Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Required (0.13 sec)

  1. pkg/config/validation/validation.go

    		// remotely. ServerCertificate and CaCertificates fields are not required.
    		return
    	}
    	if tls.Mode == networking.ServerTLSSettings_SIMPLE {
    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("SIMPLE TLS requires a server certificate"))
    		}
    		if tls.PrivateKey == "" {
    			v = AppendValidation(v, fmt.Errorf("SIMPLE TLS requires a private key"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      KONNECTIVITY_AGENT_KEY_BASE64=$(get-env-val "${master_env}" "KONNECTIVITY_AGENT_KEY")
    }
    
    # Update or verify required gcloud components are installed
    # at minimum required version.
    # Assumed vars
    #   KUBE_PROMPT_FOR_UPDATE
    function update-or-verify-gcloud() {
      local sudo_prefix=""
      if [ ! -w "$(dirname "$(which gcloud)")" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Performs transposed convolution operation on 3D inputs.
        Inputs:
          `inputs[0]`: required: the shape of output tensor
          `inputs[1]`: required: the filter weight tensor
          `inputs[2]`: required: the input activation tensor
          `inputs[3]`: optional: the bias tensor
      }];
    
      let arguments = (ins
        TFL_I32Tensor:$output_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (failed(res)) {
            // Abort if unable to find which required inputs need to be computed.
            worklist.clear();
            break;
          }
    
          if (!inputs.empty()) {
            // Enqueue required computation followed by its required operands in
            // stack.
            worklist.push_back(std::move(front));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //		Toolchain string
    //		Godebug   []Godebug
    //		Require   []Require
    //		Exclude   []Module
    //		Replace   []Replace
    //		Retract   []Retract
    //	}
    //
    //	type ModPath struct {
    //		Path       string
    //		Deprecated string
    //	}
    //
    //	type Godebug struct {
    //		Key   string
    //		Value string
    //	}
    //
    //	type Require struct {
    //		Path     string
    //		Version  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	objectName := "test-object"
    	// set of byte data for PutObject.
    	// object has to be created before running tests for HeadObject.
    	// this is required even to assert the HeadObject data,
    	// since dataInserted === dataFetched back is a primary criteria for any object storage this assertion is critical.
    	bytesData := []struct {
    		byteData []byte
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    				),
    				test.containerName,
    				options,
    			)
    			require.Equal(t, test.expectedStatus, status)
    
    			if status != nil {
    				return
    			}
    
    			require.True(
    				t,
    				strings.HasPrefix(
    					options.Location,
    					test.expectedLocation,
    				),
    			)
    			require.Equal(
    				t,
    				options.ContainerId,
    				containerID.ID,
    			)
    
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top