Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 319 for Calling (0.18 sec)

  1. pkg/kube/kclient/client.go

    // New returns a Client for the given type.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals. This is keyed on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          }
          awaitUnchecked(barrier);
          assertThat(future.isDone()).isTrue();
          // inspect state and ensure it is correct!
          // asserts that all get calling threads received the same value
          Object result = Iterables.getOnlyElement(finalResults);
          if (result == CancellationException.class) {
            assertTrue(future.isCancelled());
            if (future.wasInterrupted()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. tests/integration/README.md

    }
    ```
    
    | NOTE: A common pattern is to provide two versions of many methods: one that returns an error as well as an `OrFail` version that fails the test upon encountering an error. This provides options to the calling test and helps to simplify the calling logic. |
    | --- |
    
    Next you need to implement your component for one or more environments. If possible, create both a native and Kubernetes version.
    
    ```go
    package mycomponent
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    	return w.prefix + ": " + w.err.Error()
    }
    
    func (w wrappedError) Unwrap() error {
    	return w.err
    }
    
    // Cmd represents an external command being prepared or run.
    //
    // A Cmd cannot be reused after calling its [Cmd.Run], [Cmd.Output] or [Cmd.CombinedOutput]
    // methods.
    type Cmd struct {
    	// Path is the path of the command to run.
    	//
    	// This is the only field that must be set to a non-zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/block.go

    	b.Func.invalidateCFG()
    }
    
    // removePred removes the ith input edge from b.
    // It is the responsibility of the caller to remove
    // the corresponding successor edge, and adjust any
    // phi values by calling b.removePhiArg(v, i).
    func (b *Block) removePred(i int) {
    	n := len(b.Preds) - 1
    	if i != n {
    		e := b.Preds[n]
    		b.Preds[i] = e
    		// Update the other end of the edge we moved.
    		e.b.Succs[e.i].i = i
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/testing/fuzz.go

    	T     time.Duration // The total time taken.
    	Error error         // Error is the error from the failing input
    }
    
    func (r fuzzResult) String() string {
    	if r.Error == nil {
    		return ""
    	}
    	return r.Error.Error()
    }
    
    // fuzzCrashError is satisfied by a failing input detected while fuzzing.
    // These errors are written to the seed corpus and can be re-run with 'go test'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

    class GradleBuildTaskIntegrationTest extends AbstractIntegrationSpec {
    
        def buildOperations = new BuildOperationsFixture(executer, testDirectoryProvider)
    
        def "handles properties which are not String when calling GradleBuild"() {
            given:
            settingsFile << "rootProject.name = 'parent'"
            buildFile << """
                task buildInBuild(type:GradleBuild) {
                    dir = 'other'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    	risk in that scenario. Currently not supported on Windows, plan9 or js/wasm. Setting this
    	option for some applications can produce large traces, so use with care.
    
    	panicnil: setting panicnil=1 disables the runtime error when calling panic with nil
    	interface value or an untyped nil.
    
    	runtimecontentionstacks: setting runtimecontentionstacks=1 enables inclusion of call stacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * Calling this method will set {@code fork} to {@code true}.
         */
        public CompileOptions fork(Map<String, Object> forkArgs) {
            fork = true;
            forkOptions.define(forkArgs);
            return this;
        }
    
        /**
         * Convenience method to set {@link DebugOptions} with named parameter syntax.
         * Calling this method will set {@code debug} to {@code true}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/net/tcpsock.go

    	}
    	return nil
    }
    
    // SetKeepAlivePeriod sets the duration the connection needs to
    // remain idle before TCP starts sending keepalive probes.
    //
    // Note that calling this method on Windows prior to Windows 10 version 1709
    // will reset the KeepAliveInterval to the default system value, which is normally 1 second.
    func (c *TCPConn) SetKeepAlivePeriod(d time.Duration) error {
    	if !c.ok() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top