Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,239 for convlit (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    	}{
    		{
    			name:                          "convert nil object to unstructured should fail",
    			objectToConvert:               nil,
    			expectedErr:                   fmt.Errorf("unable to convert object type <nil> to Unstructured, must be a runtime.Object"),
    			expectedConvertedUnstructured: &unstructured.Unstructured{},
    		},
    		{
    			name:            "convert versioned empty object to unstructured should work",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/const1.go

    	_ float32 = -maxFloat32
    	_ float32 = maxFloat32
    	_ float32 = maxFloat32 /* ERROR "overflow" */ + delta32
    
    	_ = float32(- /* ERROR "cannot convert" */ (maxFloat32 + delta32))
    	_ = float32(-maxFloat32)
    	_ = float32(maxFloat32)
    	_ = float32(maxFloat32 /* ERROR "cannot convert" */ + delta32)
    
    	_ = assert(float32(smallestFloat32) == smallestFloat32)
    	_ = assert(float32(smallestFloat32/2) == 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://foo.com/";
            result = "http://www.foo.com/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://foo.com:8080/";
            result = "http://www.foo.com:8080/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://mail.bar.com/";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/initialization/LayoutCommandLineConverterTest.groovy

        def convert(String... args) {
            converter.convert(Arrays.asList(args), new BuildLayoutParameters())
        }
    
        @Requires(UnitTestPreconditions.NotEC2Agent)
        @Issue('https://github.com/gradle/gradle-private/issues/2876')
        def "has reasonable defaults"() {
            expect:
            convert().currentDir == canonicalize(SystemProperties.instance.getCurrentDir())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/ParallelismConfigurationCommandLineConverterTest.groovy

        final def converter = new ParallelismBuildOptions().commandLineConverter()
    
        def "converts parallel executor"() {
            when:
            def result = convert("--parallel")
    
            then:
            result.parallelProjectExecutionEnabled == true
    
            when:
            result = convert("--no-parallel")
    
            then:
            result.parallelProjectExecutionEnabled == false
        }
    
        def "converts max workers"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 07 06:09:06 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. plugin/pkg/admission/runtimeclass/admission.go

    }
    
    func setOverhead(a admission.Attributes, pod *api.Pod, runtimeClass *nodev1.RuntimeClass) (err error) {
    	if runtimeClass == nil || runtimeClass.Overhead == nil {
    		return nil
    	}
    
    	// convert to internal type and assign to pod's Overhead
    	nodeOverhead := &node.Overhead{}
    	if err = apinodev1.Convert_v1_Overhead_To_node_Overhead(runtimeClass.Overhead, nodeOverhead, nil); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

            participants.add(replacedBy);
    
            //We need to ensure that the conflict is orderly injected to the list of conflicts
            //Brand new conflict goes to the end
            //If we find any matching conflict we have to hook up with it
    
            //Find an existing matching conflict
            for (K participant : participants) {
                Conflict c = conflictsByParticipant.get(participant);
                if (c != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

        }
    
        /**
         * Resolves the conflict by delegating to the conflict resolver who selects single version from given candidates. Executes provided action against the conflict resolution result object.
         */
        @Override
        public void resolveNextConflict(Action<ConflictResolutionResult> resolutionAction) {
            assert hasConflicts();
            ConflictContainer<ModuleIdentifier, ComponentState>.Conflict conflict = conflicts.popConflict();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/telemetry-default-selector.yaml

      namespace: ns1
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: ALL_METRICS
          disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      selector: # Since this has a selector, it shouldn't conflict with the other Telemetry in the namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictException.java

            TreeFormatter formatter = new TreeFormatter();
    
            String plural = getPluralEnding(conflicts);
            formatter.node("Conflict" + plural + " found for the following module" + plural);
            formatter.startChildren();
    
            conflicts.stream().limit(MAX_SEEN_MODULE_COUNT)
                .forEach(conflict -> formatter.node(conflict.getMessage()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top