Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 243 for Function1 (0.28 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	// scheduler, update the ComponentConfig value in defaults.go
    	DefaultPodMaxBackoffDuration time.Duration = 10 * time.Second
    )
    
    // PreEnqueueCheck is a function type. It's used to build functions that
    // run against a Pod and the caller can choose to enqueue or skip the Pod
    // by the checking result.
    type PreEnqueueCheck func(pod *v1.Pod) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	// It panics if the type's Kind is not Struct.
    	NumField() int
    
    	// NumIn returns a function type's input parameter count.
    	// It panics if the type's Kind is not Func.
    	NumIn() int
    
    	// NumOut returns a function type's output parameter count.
    	// It panics if the type's Kind is not Func.
    	NumOut() int
    
    	// Out returns the type of a function type's i'th output parameter.
    	// It panics if the type's Kind is not Func.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    func compileCallback(fn any, cleanstack bool) uintptr
    
    // NewCallback converts a Go function to a function pointer conforming to the stdcall calling convention.
    // This is useful when interoperating with Windows code requiring callbacks.
    // The argument is expected to be a function with one uintptr-sized result. The function must not have arguments with size larger than the size of uintptr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	UsageLine: "testfunc",
    	Short:     "testing functions",
    	Long: `
    The 'go test' command expects to find test, benchmark, and example functions
    in the "*_test.go" files corresponding to the package under test.
    
    A test function is one named TestXxx (where Xxx does not start with a
    lower case letter) and should have the signature,
    
    	func TestXxx(t *testing.T) { ... }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<O> transform(
              ListenableFuture<I> input, Function<? super I, ? extends O> function, Executor executor) {
        return AbstractTransformFuture.create(input, function, executor);
      }
    
      /**
       * Like {@link #transform(ListenableFuture, Function, Executor)} except that the transformation
       * {@code function} is invoked on each call to {@link Future#get() get()} on the returned future.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	CreateStrategy rest.RESTCreateStrategy
    	// BeginCreate is an optional hook that returns a "transaction-like"
    	// commit/revert function which will be called at the end of the operation,
    	// but before AfterCreate and Decorator, indicating via the argument
    	// whether the operation succeeded.  If this returns an error, the function
    	// is not called.  Almost nobody should use this hook.
    	BeginCreate BeginCreateFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<O> transform(
              ListenableFuture<I> input, Function<? super I, ? extends O> function, Executor executor) {
        return AbstractTransformFuture.create(input, function, executor);
      }
    
      /**
       * Like {@link #transform(ListenableFuture, Function, Executor)} except that the transformation
       * {@code function} is invoked on each call to {@link Future#get() get()} on the returned future.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    }
    
    // PopulateABIInRegArgOps examines the entry block of the function
    // and looks for incoming parameters that have missing or partial
    // OpArg{Int,Float}Reg values, inserting additional values in
    // cases where they are missing. Example:
    //
    //	func foo(s string, used int, notused int) int {
    //	  return len(s) + used
    //	}
    //
    // In the function above, the incoming parameter "used" is fully live,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // generator symbol through the SetIsGeneratedSym. The functions for generator
    // symbols are kept in the Link context.
    func (l *Loader) IsGeneratedSym(i Sym) bool {
    	if !l.IsExternal(i) {
    		return false
    	}
    	return l.generatedSyms.Has(l.extIndex(i))
    }
    
    // SetIsGeneratedSym marks symbols as generated symbols. Data shouldn't be
    // stored in generated symbols, and a function is registered and called for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    // enableMetadataHugePages enables huge pages for various sources of heap metadata.
    //
    // A note on latency: for sufficiently small heaps (<10s of GiB) this function will take constant
    // time, but may take time proportional to the size of the mapped heap beyond that.
    //
    // This function is idempotent.
    //
    // The heap lock must not be held over this operation, since it will briefly acquire
    // the heap lock.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top