Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,066 for convlit (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/AbstractPropertiesCommandLineConverterTest.groovy

        }
    
        def "parses properties args"() {
            expect:
            convert("-Aa=b", "-Ac=d") == [a: "b", c: "d"]
        }
    
        def "parses properties args with no property value"() {
            expect:
            convert("-Aa", "-Ab=") == [a: "", b: ""]
        }
    
        def "parses properties arg containing equals"() {
            expect:
            convert("-Aprop=a b=c", "-Aprop2==", "-Aprop3=ab=") == [prop: 'a b=c', prop2: '=', prop3: 'ab=']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

     * This class may be used to resolve a capability conflict by either selecting
     * explicitly one of the candidates, or selecting the one with the highest
     * version of the capability.
     *
     * @since 5.6
     */
    @HasInternalProtocol
    public interface CapabilityResolutionDetails {
        /**
         * Returns the capability in conflict
         */
        Capability getCapability();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

            !conflict.conflictExists()
    
            when:
            conflict = handler.registerCandidate(
                candidate(capability, cs2)
            )
    
            then:
            conflict.conflictExists()
    
            when:
            // use a reasonably high number so that the test becomes at best flaky if we break the contract
            50.times {
                ComponentState cs = component("group", "m_${it}")
                expectedIds << cs.id.module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/UrlConvertHelperTest.java

            assertEquals("http://hoge.com/http/fuga.html", urlConvertHelper.convert(url));
    
            url = "tp://hoge.com/http/fuga.html";
            assertEquals("tp://hoge.com/http/fuga.html", urlConvertHelper.convert(url));
    
            urlConvertHelper.add("^tp:", "http:");
    
            url = "http://hoge.com/http/fuga.html";
            assertEquals("http://hoge.com/http/fuga.html", urlConvertHelper.convert(url));
    
            url = "tp://hoge.com/http/fuga.html";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/DaemonCommandLineConverterTest.groovy

        }
    
        def "can convert stop option - #options"() {
            when:
            def converted = convert(options)
    
            then:
            converted.stop == stop
    
            where:
            options    | stop
            []         | false
            ['--stop'] | true
        }
    
        def "can convert status option - #options"() {
            when:
            def converted = convert(options)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top