Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for pass2 (0.09 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    			f("accept-encoding", "gzip")
    		}
    		if !didUA {
    			f("user-agent", http2defaultUserAgent)
    		}
    	}
    
    	// Do a first pass over the headers counting bytes to ensure
    	// we don't exceed cc.peerMaxHeaderListSize. This is done as a
    	// separate pass before encoding the headers to prevent
    	// modifying the hpack state.
    	hlSize := uint64(0)
    	enumerateHeaders(func(name, value string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				},
    				Status: apiextensions.CustomResourceDefinitionStatus{
    					StoredVersions: []string{"version"},
    				},
    			},
    			errors: []validationMatch{},
    		},
    		{
    			name: "webhookconfig: should pass on invalid ConversionReviewVersion with old invalid versions",
    			resource: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com", ResourceVersion: "42"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - `kubeadm`: added a new "kubeadm config validate" command that can be used to
      validate any input config file. Use the `--config` flag to pass a config file
      to it. See the command `--help` screen for more information. As a result of adding
      this new command, enhance the validation capabilities of the existing "kubeadm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and  may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0#0, %0#1 : tensor<f32>, tensor<f32>
    }
    
    // -----
    
    // This test case also ensures the mhlo dialect is loaded as a dependency by the
    // pass and hence the split here.
    
    // CHECK-LABEL: func @whileRegion
    func.func @whileRegion() -> tensor<i32> {
      %0 = "tf.Const"()  {value = dense<0> : tensor<i32>}  : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(field.NewPath("binaryData").Key(key), key, msg))
    		}
    		totalSize += len(value)
    	}
    	if totalSize > core.MaxSecretSize {
    		// pass back "" to indicate that the error refers to the whole object.
    		allErrs = append(allErrs, field.TooLong(field.NewPath(""), cfg, core.MaxSecretSize))
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

            ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <p>
    yields a function value representing <code>Mv</code> with signature
    </p>
    
    <pre>
    func(tv *T, a int) int
    </pre>
    
    <p>
    Such a function indirects through the receiver to create a value
    to pass as the receiver to the underlying method;
    the method does not overwrite the value whose address is passed in
    the function call.
    </p>
    
    <p>
    The final case, a value-receiver function for a pointer-receiver method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: pass the host OS environment variables when executing "crictl" during image pulls. This fixes a bug where *PROXY environment variables did not affect crictl's internet connectivity. ([#110134](https://github.com/kubernetes/kubernetes/pull/110134), [@mk...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top