Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for someone (0.39 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		}
    	}
    	localFileName := filepath.Join(u.dir.LocalDir(), "local."+expiryDate+".json")
    	uploadFileName := filepath.Join(u.dir.LocalDir(), expiryDate+".json")
    
    	/* Prepare to write files */
    	// if either file exists, someone has been here ahead of us
    	// (there is still a race, but this check shortens the open window)
    	if _, err := os.Stat(localFileName); err == nil {
    		u.deleteFiles(countFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

                    DirectoryProperty reportsDir = extension.getReportsDirectory();
                    reportTask.getReports().all(action(report -> {
                        // For someone looking for the difference between this and the duplicate code above
                        // this one uses the `testTaskProvider` and the `reportTask`. The other just
                        // uses the `reportTask`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/openapi-callbacks.md

    # OpenAPI Callbacks
    
    You could create an API with a *path operation* that could trigger a request to an *external API* created by someone else (probably the same developer that would be *using* your API).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top