Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,066 for convlit (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/labels/labels_test.go

    			conflict: false,
    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    			labels2:  map[string]string{"env": "dev"},
    			conflict: true,
    		},
    		{
    			labels1:  map[string]string{"env": "test", "infra": "false"},
    			labels2:  map[string]string{"infra": "true", "color": "blue"},
    			conflict: true,
    		},
    	}
    	for _, test := range tests {
    		conflict := Conflicts(Set(test.labels1), Set(test.labels2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/spec/conversions.go

    	T4 ~int | ~string,
    ]() {
    	_ = T1(0 /* ERRORx `cannot convert 0 .* to type T1: T1 does not contain specific types` */)
    	_ = T2(1 /* ERRORx `cannot convert 1 .* to type T2: T2 does not contain specific types` */)
    	_ = T3(2 /* ERRORx `cannot convert 2 .* to type T3: cannot convert 2 .* to type bool \(in T3\)` */)
    	_ = T4(3.14 /* ERRORx `cannot convert 3.14 .* to type T4: cannot convert 3.14 .* to type int \(in T4\)` */)
    }
    
    // "x is assignable to T"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/NotationParserBuilderSpec.groovy

            def converter1 = Mock(NotationConverter)
            def converter2 = Mock(NotationConverter)
    
            given:
            _ * converter1.convert(12, _) >> { Object n, NotationConvertResult result -> result.converted("[12]") }
            converter2.convert(true, _) >> { Object n, NotationConvertResult result -> result.converted("True") }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	return c.unsafe.ConvertFieldLabel(gvk, label, value)
    }
    
    // Convert makes a copy of in object and then delegate the call to the unsafe converter.
    func (c *safeConverterWrapper) Convert(in, out, context interface{}) error {
    	inObject, ok := in.(runtime.Object)
    	if !ok {
    		return fmt.Errorf("input type %T in not valid for object conversion", in)
    	}
    	return c.unsafe.Convert(inObject.DeepCopyObject(), out, context)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top