Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,457 for providedBy (0.22 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    }
    
    // WithCommand adds the given value to the Command field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Command field.
    func (b *ContainerApplyConfiguration) WithCommand(values ...string) *ContainerApplyConfiguration {
    	for i := range values {
    		b.Command = append(b.Command, values[i])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. licenses/sigs.k8s.io/yaml/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. LICENSES/vendor/github.com/google/cel-go/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 01:47:04 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

              - Value: 'square' selects variant: 'blueSquareElements'
              - Value: 'triangle' selects variant: 'blueTriangleElements'""")
            and: "Helpful resolutions are provided"
            assertSuggestsReviewingAlgorithm()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            failure.assertHasCause("""Module 'org:foo' has been rejected:
       Cannot select module with conflict on capability 'org:foo:1.0' also provided by [org:bar:1.0(runtime)]""")
            failure.assertHasCause("""Module 'org:bar' has been rejected:
       Cannot select module with conflict on capability 'org:foo:1.0' also provided by [org:foo:1.0(runtime)]""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. licenses/sigs.k8s.io/json/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 01:31:25 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      it requires `representative_dataset` to collect statistics required for
      quantization. If non-None `representative_dataset` is provided with a QAT
      model input, `representative_dataset` will be ignored.
    
      Args:
        src_saved_model_path: Path to the saved model. When representative_dataset
          is not provided, this should be a model trained with QAT.
        dst_saved_model_path: The path to save the output SavedModel. The directory
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

    TEST(PopulateDefaultsTest, PopulateDefaultsForConfigWithUnpackQuantizedTypes) {
      QuantizationConfig config{};
      config.mutable_pipeline_config()->set_unpack_quantized_types(false);
    
      // Test that if the user explicitly provided `unpack_quantized_types`, it is
      // not overridden.
      const QuantizationConfig new_config = PopulateDefaults(config);
      EXPECT_FALSE(new_config.pipeline_config().unpack_quantized_types());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. internal/grid/types.go

    }
    
    // NewBytesWith returns a new Bytes with the provided content.
    // When sent as a parameter, the caller gives up ownership of the byte slice.
    // When returned as response, the handler also gives up ownership of the byte slice.
    func NewBytesWith(b []byte) *Bytes {
    	bb := Bytes(b)
    	return &bb
    }
    
    // NewBytesWithCopyOf returns a new byte slice with a copy of the provided content.
    func NewBytesWithCopyOf(b []byte) *Bytes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    // the provided minimum serialized size that can fit into a single request.
    func estimateMaxArrayItemsFromMinSize(minSize int64) int64 {
    	// subtract 2 to account for [ and ]
    	return (maxRequestSizeBytes - 2) / (minSize + 1)
    }
    
    // estimateMaxAdditionalPropertiesPerRequest estimates the maximum number of additional properties
    // with the provided minimum serialized size that can fit into a single request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top