Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for someExe (0.21 sec)

  1. pkg/serviceaccount/openidmetadata.go

    	// need to validate ID tokens, but do not need to initiate login flows,
    	// and since we aren't sure what to put in authorization_endpoint yet,
    	// we will omit this field until someone files a bug.
    	// AuthzEndpoint string   `json:"authorization_endpoint"`                // REQUIRED in OIDC; but useless to relying parties.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/events.md

        Incluindo como manipular estado do lifespan que pode ser usado em outras áreas do seu código.
    
    ## Sub Aplicações
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. istioctl/cmd/root.go

    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/client/tests/remotecommand_test.go

    }
    
    type fakeConnection struct {
    	httpstream.Connection
    }
    
    // Dial is the common functionality between any stream based upgrader, regardless of protocol.
    // This method ensures that someone can use a generic stream executor without being dependent
    // on the core Kube client config behavior.
    func TestDial(t *testing.T) {
    	upgrader := &fakeUpgrader{
    		t:             t,
    		checkResponse: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/net/http/internal/chunked_test.go

    			}
    		}
    	}
    }
    
    func TestChunkReadingIgnoresExtensions(t *testing.T) {
    	in := "7;ext=\"some quoted string\"\r\n" + // token=quoted string
    		"hello, \r\n" +
    		"17;someext\r\n" + // token without value
    		"world! 0123456789abcdef\r\n" +
    		"0;someextension=sometoken\r\n" // token=token
    	data, err := io.ReadAll(NewChunkedReader(strings.NewReader(in)))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/runtime/chan.go

    	// Ensure the value being sent is kept alive until the
    	// receiver copies it out. The sudog has a pointer to the
    	// stack object, but sudogs aren't considered as roots of the
    	// stack tracer.
    	KeepAlive(ep)
    
    	// someone woke us up.
    	if mysg != gp.waiting {
    		throw("G waiting list is corrupted")
    	}
    	gp.waiting = nil
    	gp.activeStackChans = false
    	closed := !mysg.success
    	gp.param = nil
    	if mysg.releasetime > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

        // Run verificationTask when someone runs check
        check.get().dependsOn(this)
    }
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    def check = tasks.register("check")
    tasks.register("verificationTask") { verificationTask ->
        // Configure verificationTask
    
        // Run verificationTask when someone runs check
        check.get().dependsOn verificationTask
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. docs/pt/docs/index.md

    * `main`: o arquivo `main.py` (o "módulo" Python).
    * `app`: o objeto criado dentro de `main.py` com a linha `app = FastAPI()`.
    * `--reload`: faz o servidor recarregar após mudanças de código. Somente faça isso para desenvolvimento.
    
    </details>
    
    ### Verifique
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        private Loader storeIfAbsent(ProtectionDomain domain, Loader newLoader) {
            Loader oldLoader = loaders.putIfAbsent(domain, newLoader);
            if (oldLoader != null) {
                // Discard the new loader, someone beat us with storing it.
                IoActions.closeQuietly(newLoader);
                return oldLoader;
            }
            return newLoader;
        }
    
        @Override
        public void close() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

            }
    
            adder.run();
        }
    
        private Plugin<?> producePluginInstance(Class<?> pluginClass) {
            // This insanity is needed for the case where someone calls pluginContainer.add(new SomePlugin())
            // That is, the plugin container has the instance that we want, but we don't think (we can't know) it has been applied
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top