Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,607 for Invokes (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    	bytes, err := Encode(e, obj)
    	if err != nil {
    		panic(err)
    	}
    	return string(bytes)
    }
    
    // UseOrCreateObject returns obj if the canonical ObjectKind returned by the provided typer matches gvk, or
    // invokes the ObjectCreator to instantiate a new gvk. Returns an error if the typer cannot find the object.
    func UseOrCreateObject(t ObjectTyper, c ObjectCreater, gvk schema.GroupVersionKind, obj Object) (Object, error) {
    	if obj != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    // world and invokes the syscall on each OS thread. Once this function returns,
    // all threads are in sync.
    //
    //go:uintptrescapes
    func runtime_doAllThreadsSyscall(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
    
    // AllThreadsSyscall performs a syscall on each OS thread of the Go
    // runtime. It first invokes the syscall on one thread. Should that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start.go

    		if reportCrashes || childShouldUpload {
    			parent(reportCrashes, childShouldUpload, result)
    		}
    	case "1":
    		// golang/go#67211: be sure to set telemetryChildVar before running the
    		// child, because the child itself invokes the go command to download the
    		// upload config. If the telemetryChildVar variable is still set to "1",
    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Functions.java

    @ElementTypesAreNonnullByDefault
    public final class Functions {
      private Functions() {}
    
      /**
       * A function equivalent to the method reference {@code Object::toString}, for users not yet using
       * Java 8. The function simply invokes {@code toString} on its argument and returns the result. It
       * throws a {@link NullPointerException} on null input.
       *
       * <p><b>Warning:</b> The returned function may not be <i>consistent with equals</i> (as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen_test_h.golden

    // methods. Usage example:
    //
    //   MyClass computation;
    //   // ...set args using computation.argN methods
    //   CHECK(computation.Run());
    //   // ...inspect results using computation.resultN methods
    //
    // The Run method invokes the actual computation, with inputs read from arg
    // buffers, and outputs written to result buffers. Each Run call may also use
    // a set of temporary buffers for the computation.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Invokable.java

       */
      public abstract boolean isOverridable();
    
      /** Returns {@code true} if this was declared to take a variable number of arguments. */
      public abstract boolean isVarArgs();
    
      /**
       * Invokes with {@code receiver} as 'this' and {@code args} passed to the underlying method and
       * returns the return value; or calls the underlying constructor with {@code args} and returns the
       * constructed instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/query.go

    	if gover.IsToolchain(mPath) {
    		return false
    	}
    	if q.canMatchWildcardInModule != nil {
    		return q.canMatchWildcardInModule(mPath)
    	}
    	return str.HasPathPrefix(q.pattern, mPath)
    }
    
    // pathOnce invokes f to generate the pathSet for the given path,
    // if one is still needed.
    //
    // Note that, unlike sync.Once, pathOnce does not guarantee that a concurrent
    // call to f for the given path has completed on return.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Functions.java

    @ElementTypesAreNonnullByDefault
    public final class Functions {
      private Functions() {}
    
      /**
       * A function equivalent to the method reference {@code Object::toString}, for users not yet using
       * Java 8. The function simply invokes {@code toString} on its argument and returns the result. It
       * throws a {@link NullPointerException} on null input.
       *
       * <p><b>Warning:</b> The returned function may not be <i>consistent with equals</i> (as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/gc.go

    // consistent testing environment to help avoid flakiness.
    func gcMemoryLimit(gcPercent int) {
    	if oldProcs := runtime.GOMAXPROCS(4); oldProcs < 4 {
    		// Fail if the default GOMAXPROCS isn't at least 4.
    		// Whatever invokes this should check and do a proper t.Skip.
    		println("insufficient CPUs")
    		return
    	}
    	debug.SetGCPercent(gcPercent)
    
    	const myLimit = 256 << 20
    	if limit := debug.SetMemoryLimit(-1); limit != math.MaxInt64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

              Class.forName("com.google.appengine.api.ThreadManager")
                  .getMethod("currentRequestThreadFactory")
                  .invoke(null);
        } catch (IllegalAccessException | ClassNotFoundException | NoSuchMethodException e) {
          throw new RuntimeException("Couldn't invoke ThreadManager.currentRequestThreadFactory", e);
        } catch (InvocationTargetException e) {
          throw Throwables.propagate(e.getCause());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top