Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,239 for convlit (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

        private static class Details implements ResolutionDetails {
            private final CapabilityConflict conflict;
            private final Set<NodeState> evicted = new HashSet<>();
            private NodeState selected;
            private Describable reason;
    
            private Details(CapabilityConflict conflict) {
                this.conflict = conflict;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictHandler.java

        /**
         * Registers new module and returns information about any potential conflict
         */
        PotentialConflict registerCandidate(CANDIDATE candidate);
    
        /**
         * Informs whether there is any conflict at present
         */
        boolean hasConflicts();
    
        /**
         * Resolves next conflict and trigger provided action after the resolution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/StartParameterConverter.java

            loggingConfigurationCommandLineConverter.convert(parsedCommandLine, properties.getProperties(), startParameter);
            parallelConfigurationCommandLineConverter.convert(parsedCommandLine, properties.getProperties(), startParameter);
    
            startParameter.getSystemPropertiesArgs().putAll(properties.getRequestedSystemProperties());
    
            projectPropertiesCommandLineConverter.convert(parsedCommandLine, startParameter.getProjectProperties());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

    kind: Sidecar
    metadata:
      name: has-conflict-1 # Both Sidecars in this namespace omit workload selector, so they are in conflict
      namespace: ns2
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-conflict-2 # Both Sidecars in this namespace omit workload selector, so they are in conflict
      namespace: ns2
    spec:
      egress:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilder.java

            return create(targetBuild);
        }
    
        @Override
        public DefaultGradleBuild create(BuildState target) {
            target.ensureProjectsLoaded();
            return convert(target, new LinkedHashMap<>());
        }
    
        private DefaultGradleBuild convert(BuildState targetBuild, Map<BuildState, DefaultGradleBuild> all) {
            DefaultGradleBuild model = all.get(targetBuild);
            if (model != null) {
                return model;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. pkg/kubectl/cmd/convert/convert_test.go

    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/appsdeployment.yaml",
    			outputVersion: "extensions/v1beta1",
    			fields: []checkField{
    				{
    					expected: "apiVersion: extensions/v1beta1",
    				},
    			},
    		},
    		{
    			name:          "extensions deployment to apps deployment",
    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/extensionsdeployment.yaml",
    			outputVersion: "apps/v1beta2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top