Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,865 for runAction (1.27 sec)

  1. src/crypto/crypto.go

    // if the hash function is not linked into the binary.
    func (h Hash) New() hash.Hash {
    	if h > 0 && h < maxHash {
    		f := hashes[h]
    		if f != nil {
    			return f()
    		}
    	}
    	panic("crypto: requested hash function #" + strconv.Itoa(int(h)) + " is unavailable")
    }
    
    // Available reports whether the given hash function is linked into the binary.
    func (h Hash) Available() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    package v1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSIDriver) APILifecycleIntroduced() (major, minor int) {
    	return 1, 18
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apidiscovery/v2/zz_generated.deepcopy.go

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIGroupDiscovery.
    func (in *APIGroupDiscovery) DeepCopy() *APIGroupDiscovery {
    	if in == nil {
    		return nil
    	}
    	out := new(APIGroupDiscovery)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 16:40:14 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/zz_generated.prerelease-lifecycle.go

    package v1alpha1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *IPAddress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 27
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/mdo/java/WrapperList.java

    import java.util.List;
    import java.util.Objects;
    import java.util.function.Consumer;
    import java.util.function.Function;
    import java.util.function.Supplier;
    
    class WrapperList<T, U> extends AbstractList<T> implements Serializable {
        private final Supplier<List<U>> getter;
        private final Consumer<List<U>> setter;
        private final Function<U, T> mapper;
        private final Function<T, U> revMapper;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        are derived from the object's path in the SavedObjectGraph. For example,
        a Python `tf.Module` with an exported function "foo" will result in an MLIR
        module where the function has an exported name "foo". If the `tf.Module`
        contains a subobject "self.bar" which itself has an exported function
        "baz", then the function will have an exported name "bar.baz".
        If an object in the object graph is reachable via multiple paths
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_s390x.s

    // func kmQuery() queryResult
    TEXT ·kmQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KM-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KM   R2, R4         // cipher message (KM)
    	RET
    
    // func kmcQuery() queryResult
    TEXT ·kmcQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KMC-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/pjrt_compile_util.h

    // Similar to the above function but it does not take a OpKernelContext.
    // Instead, it takes the following arguments that are obtained from
    // OpKernelContext in the above function.
    // - `device`: the device used to compile the function.
    // - `rm`: the resource manager for DeviceCompiler to store JIT-compiled XLA
    // computation.
    // - `flr`: the FunctionLibraryRuntime for the `function`.
    Status CompileToPjRtLoadedExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. prow/lib.sh

    # and after completion. If xtrace was never set, this will result in xtrace being enabled.
    # Ideally we would restore the old xtrace setting, but I don't think its possible to do that without also log-spamming
    # If we need to call it from a context without xtrace we can just make a new function.
    function trace() {
      { set +x; } 2>/dev/null
      log "Running '${1}'"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/main/java/org/gradle/internal/ExtendedOptional.java

     */
    
    package org.gradle.internal;
    
    import java.util.NoSuchElementException;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.function.Consumer;
    import java.util.function.Function;
    import java.util.function.Predicate;
    import java.util.function.Supplier;
    import java.util.stream.Stream;
    
    /**
     * Backport of Java 11 methods to Java 8's {@link Optional}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top