Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 467 for unrenamed (0.42 sec)

  1. android/guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
         * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
         * readable name.
         */
        @CanIgnoreReturnValue
        public ToStringHelper addValue(@CheckForNull Object value) {
          return addHolder(value);
        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    		},
    
    		"extra prefix matches case-insensitive with unrelated headers": {
    			nameHeaders:        []string{"X-Remote-User"},
    			groupHeaders:       []string{"X-Remote-Group-1", "X-Remote-Group-2"},
    			extraPrefixHeaders: []string{"X-Remote-Extra-1-", "X-Remote-Extra-2-"},
    			requestHeaders: http.Header{
    				"X-Group-Remote":        {"snorlax"}, // unrelated header
    				"X-Group-Bear":          {"panda"},   // another unrelated header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
         * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
         * readable name.
         */
        @CanIgnoreReturnValue
        public ToStringHelper addValue(@CheckForNull Object value) {
          return addHolder(value);
        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/groovyScope/groovy/build.gradle

        mainClass = 'scope'
        classpath = sourceSets.main.runtimeClasspath
        if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
            jvmArgs = ['--add-opens', 'java.base/java.lang=ALL-UNNAMED']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 345 bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/useConfigurationScript/build.gradle

    apply plugin: "groovy"
    
    repositories {
        mavenCentral()
    }
    
    compileGroovy {
        if (JavaVersion.current().isJava9Compatible()) {
            groovyOptions.forkOptions.jvmArgs += ['--add-opens', 'java.base/jdk.internal.loader=ALL-UNNAMED']
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 330 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_issue37438.txt

    # version of the module that is already required and does not exist at
    # the version that would be selected by 'go mod tidy', then
    # 'go get foo@requested' should resolve the requested version,
    # not error out on the (unrelated) latest one.
    
    go get example.net/a/p@v0.2.0
    
    -- go.mod --
    module example
    
    go 1.15
    
    require example.net/a v0.1.0
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/a v0.2.0 => ./a2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 798 bytes
    - Viewed (0)
  7. test/fixedbugs/issue52535.go

    // compile
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gofrontend crashed converting unnamed bool type to any.
    
    package p
    
    func F() {
    	m := make(map[int]int)
    	var ok any
    	_, ok = m[0]
    	_ = ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 17:37:12 UTC 2022
    - 314 bytes
    - Viewed (0)
  8. test/fixedbugs/issue5910.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5910: parsing of unnamed struct types
    // in inlined bodies was broken.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 05 20:09:53 UTC 2013
    - 272 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

    import static org.gradle.api.tasks.PathSensitivity.RELATIVE
    
    abstract class AbstractPathSensitivityIntegrationSpec extends AbstractIntegrationSpec {
    
        def "single source file renamed with #pathSensitive as input is loaded from cache: #expectedOutcome"() {
            given:
            file("sources/input.txt").text = "input"
    
            declareTestTaskWithPathSensitivity(pathSensitive)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_prefer_incompatible.txt

    ! grep '^example.com/incompatiblewithsub v1.0.0' go.sum
    
    # TODO(golang.org/issue/31580): the 'go get' command above should not change
    # go.sum. However, as part of the query above, we download example.com@v1.0.0,
    # an unrelated module, since it's a possible prefix. The sum for that module
    # should not be written to go.sum.
    
    -- go.mod --
    module m
    
    go 1.15
    
    require example.com/incompatiblewithsub v2.0.0+incompatible
    -- use.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 895 bytes
    - Viewed (0)
Back to top