Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for variants (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         *
         * @return true if a deprecation was emitted
         */
        private boolean maybePreventMutation(MutationType type, String typeDescription) {
            // If an external party has seen the public state (variant metadata) of our configuration,
            // we forbid any mutation that mutates the public state. The resolution strategy does
            // not mutate the public state of the configuration, so we allow it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    			Scheme: "http",
    			Host:   "example.com",
    			Path:   "/a b",
    		},
    		"/a%20b",
    	},
    	// golang.org/issue/4860 variant 1
    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "/%2F/%2F/",
    		},
    		"/%2F/%2F/",
    	},
    	// golang.org/issue/4860 variant 2
    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "//other.example.com/%2F/%2F/",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	got         map[Sym]int32       // stores got for pe objects
    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    	relocVariant map[relocId]sym.RelocVariant // stores variant relocs
    
    	// Used to implement field tracking; created during deadcode if
    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                            }
                        }
                    }
                }
            }
    
        }
    
        /**
         * This test is a variant of the previous one where there's an additional catch: one
         * of the modules (annotations) is supposedly nonexistent in 2.7.9 (say, it appeared in 2.9.x)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (locale != null) {
                properties.put("user.language", locale.getLanguage());
                properties.put("user.country", locale.getCountry());
                properties.put("user.variant", locale.getVariant());
            }
    
            if (eagerClassLoaderCreationChecksOn) {
                properties.put(DefaultClassLoaderScope.STRICT_MODE_PROPERTY, "true");
            }
    
            if (interactive) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

            "sds": {
              "token": {
                "aud": "istio-ca"
              }
            },
            "sts": {
              "servicePort": 0
            },
            "tag": "latest",
            "variant": ""
          },
          "istio_cni": {
            "chained": true,
            "enabled": false
          },
          "revision": "",
          "sidecarInjectorWebhook": {
            "alwaysInjectSelector": [],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/20098")
        def "doesn't fail for a variant that has a file name in the Gradle Module Metadata different to actual artifact"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    	}, {
    		// The top level Q field takes precedence.
    		CaseName: Name(""),
    		in:       `{"Q":1}`,
    		ptr:      new(S2),
    		out:      &S2{Q: 1},
    	}, {
    		// No issue with non-pointer variant.
    		CaseName: Name(""),
    		in:       `{"R":2,"Q":1}`,
    		ptr:      new(S3),
    		out:      &S3{embed1: embed1{Q: 1}, R: 2},
    	}, {
    		// No error since both embedded structs have field R, which annihilate each other.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    	rs := r.Sym()
    	switch rv & sym.RV_TYPE_MASK {
    	default:
    		ldr.Errorf(s, "unexpected relocation variant %d", rv)
    		fallthrough
    
    	case sym.RV_NONE:
    		return t
    
    	case sym.RV_POWER_LO:
    		if rv&sym.RV_CHECK_OVERFLOW != 0 {
    			// Whether to check for signed or unsigned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Pause: add a -v flag to the Windows variant of the pause binary, which prints the version of pause and exits. The Linux pause already has the flag. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top