Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for retracted (2.85 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if schema := customResourceValidation.OpenAPIV3Schema; schema != nil {
    		// if the status subresource is enabled, only certain fields are allowed inside the root schema.
    		// these fields are chosen such that, if status is extracted as properties["status"], it's validation is not lost.
    		if statusSubresourceEnabled {
    			v := reflect.ValueOf(schema).Elem()
    			for i := 0; i < v.NumField(); i++ {
    				// skip zero values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

        }
        return new ImmediateFuture<>(value);
      }
    
      /**
       * Returns a successful {@code ListenableFuture<Void>}. This method is equivalent to {@code
       * immediateFuture(null)} except that it is restricted to produce futures of type {@code Void}.
       *
       * @since 29.0
       */
      @SuppressWarnings("unchecked")
      public static ListenableFuture<@Nullable Void> immediateVoidFuture() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	}
    	return b != 0, nil
    }
    
    // IsRestricted reports whether the access token t is a restricted token.
    func (t Token) IsRestricted() (isRestricted bool, err error) {
    	isRestricted, err = isTokenRestricted(t)
    	if !isRestricted && err == syscall.EINVAL {
    		// If err is EINVAL, this returned ERROR_SUCCESS indicating a non-restricted token.
    		err = nil
    	}
    	return
    }
    
    const (
    	WTS_CONSOLE_CONNECT        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	set := newStatefulSet(3)
    	pod := newStatefulSetPod(set, 1)
    	if parent, ordinal := getParentNameAndOrdinal(pod); parent != set.Name {
    		t.Errorf("Extracted the wrong parent name expected %s found %s", set.Name, parent)
    	} else if ordinal != 1 {
    		t.Errorf("Extracted the wrong ordinal expected %d found %d", 1, ordinal)
    	}
    	pod.Name = "1-bar"
    	if parent, ordinal := getParentNameAndOrdinal(pod); parent != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%x", I(23), `3c32333e`},
    	{"%#x", I(23), `0x3c32333e`},
    	{"%# x", I(23), `0x3c 0x32 0x33 0x3e`},
    	// Stringer applies only to string formats.
    	{"%d", I(23), `23`},
    	// Stringer applies to the extracted value.
    	{"%s", reflect.ValueOf(I(23)), `<23>`},
    
    	// go syntax
    	{"%#v", A{1, 2, "a", []int{1, 2}}, `fmt_test.A{i:1, j:0x2, s:"a", x:[]int{1, 2}}`},
    	{"%#v", new(byte), "(*uint8)(0xPTR)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        get_compat_files(TENSORFLOW_API_INIT_FILES_V1, 1) + get_nested_compat_files([
            1,
            2,
        ])
    )
    # copybara:comment_end
    
    # Config setting used when building for products
    # which requires restricted licenses to be avoided.
    config_setting(
        name = "no_lgpl_deps",
        define_values = {"__TENSORFLOW_NO_LGPL_DEPS__": "1"},
        visibility = ["//visibility:public"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		p.From.Reg = v.Args[0].Reg()
    		p.To.Reg = v.Reg()
    		p.To.Type = obj.TYPE_REG
    
    	case ssa.OpPPC64MOVDload, ssa.OpPPC64MOVWload:
    
    		// MOVDload and MOVWload are DS form instructions that are restricted to
    		// offsets that are a multiple of 4. If the offset is not a multiple of 4,
    		// then the address of the symbol to be loaded is computed (base + offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // TPU). Here, 'parent_func' is the func.FuncOp that owns the ops in 'ops'.
      //
      // Returns in 'caller' a tf.StatefulPartitionedCallOp that calls the function
      // that was extracted..
    
      // Find the input edges to form the set of operands to the new function call.
      llvm::SetVector<Value> inputs;
      for (Operation* op : ops) {
        for (Value operand : op->getOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // the call node.
        void ConnectSequencerToCallNode(Graph* graph_out);
    
        Status ReplaceFunctionDef(FunctionLibraryDefinition* library);
    
       private:
        // The subgraph extracted from the input graph, suitable for being turned
        // into a FunctionDef. Inputs are fed by _Arg nodes, and outputs are
        // returned by _Retval nodes.
        std::unique_ptr<Graph> graph_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          apply {
            this.followRedirects = followRedirects
          }
    
        /**
         * Configure this client to allow protocol redirects from HTTPS to HTTP and from HTTP to HTTPS.
         * Redirects are still first restricted by [followRedirects].  Defaults to true.
         *
         * @param followProtocolRedirects whether to follow redirects between HTTPS and HTTP.
         */
        fun followSslRedirects(followProtocolRedirects: Boolean) =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top