Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for a$ (0.07 sec)

  1. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

            where:
            elements << [["a"], ["a", "b"]]
        }
    
        def "has a nice toString method"() {
            expect:
            PersistentList.of().toString() == "Nil"
            PersistentList.of("a").toString() == "a"
            PersistentList.of("a", "b").toString() == "a : b"
            PersistentList.of("a", "b", "c").toString() == "a : b : c"
            PersistentList.of("a", "b", "c", "d").toString() == "a : b : c : d"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    }
    
    // AddFlags adds flags related to admission for a specific APIServer to the specified FlagSet
    func (a *AdmissionOptions) AddFlags(fs *pflag.FlagSet) {
    	if a == nil {
    		return
    	}
    
    	fs.StringSliceVar(&a.EnablePlugins, "enable-admission-plugins", a.EnablePlugins, ""+
    		"admission plugins that should be enabled in addition to default enabled ones ("+
    		strings.Join(a.defaultEnabledPluginNames(), ", ")+"). "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_deprecated.txt

    # 'go list pkg' does not show deprecation.
    go list example.com/deprecated/a
    stdout '^example.com/deprecated/a$'
    
    # 'go list -m' does not show deprecation.
    go list -m example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.9.0$'
    
    # 'go list -m -versions' does not show deprecation.
    go list -m -versions example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.0.0 v1.9.0$'
    
    # 'go list -m -u' shows deprecation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java

            Artifact a = artifactFactory.createArtifactWithClassifier("groupId", "a", "0.0.1-SNAPSHOT", "jar", null);
            File file = new File(localRepository.getBasedir(), localRepository.pathOf(a));
            a.setFile(file);
    
            assertEquals(
                    "a-0.0.1-SNAPSHOT.jar.lastUpdated",
                    updateCheckManager.getTouchfile(a).getName());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t raw -N ISTIO_OUTPUT
    iptables -t nat -A PREROUTING -i not-istio-nic -j RETURN
    iptables -t nat -A OUTPUT -o not-istio-nic -j RETURN
    iptables -t mangle -A PREROUTING -i not-istio-nic -j RETURN
    iptables -t mangle -A OUTPUT -o not-istio-nic -j RETURN
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/alias.go

    // If a is not an instance of a generic alias, Origin returns a.
    func (a *Alias) Origin() *Alias { return a.orig }
    
    // TypeParams returns the type parameters of the alias type a, or nil.
    // A generic Alias and its instances have the same type parameters.
    func (a *Alias) TypeParams() *TypeParamList { return a.tparams }
    
    // SetTypeParams sets the type parameters of the alias type a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

          <a title="{{.Help.show}}" href="?" id="show">Show</a>
          <a title="{{.Help.show_from}}" href="?" id="show-from">Show from</a>
          <hr>
          <a title="{{.Help.reset}}" href="?">Reset</a>
        </div>
      </div>
    
      <div id="config" class="menu-item">
        <div class="menu-name">
          Config
          <i class="downArrow"></i>
        </div>
        <div class="submenu">
          <a title="{{.Help.save_config}}" id="save-config">Save as ...</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/net/http/routing_tree_test.go

    			}
    		}
    	}
    
    	test(getTestTree(), []testCase{
    		{"GET", "", "/a", "/a", nil},
    		{"Get", "", "/b", "", nil},
    		{"Get", "", "/a/b", "/a/b", nil},
    		{"Get", "", "/a/c", "/a/{x}", []string{"c"}},
    		{"Get", "", "/a/b/", "/a/b/{$}", nil},
    		{"Get", "", "/a/b/c", "/a/b/{y}", []string{"c"}},
    		{"Get", "", "/a/b/c/d", "/a/b/{x...}", []string{"c/d"}},
    		{"Get", "", "/g/h/i", "/g/h/i", nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** If both are non-numeric, the parts are compared **alphabetically**, in a **case-sensitive** manner: `1.A` < `1.B` < `1.a` < `1.b`
    ** A version with an extra numeric part is considered **higher** than a version without (even when it's zero): `1.1` < `1.1.0`
    ** A version with an extra non-numeric part is considered **lower** than a version without: `1.1.a` < `1.1`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/go/types/alias.go

    // If a is not an instance of a generic alias, Origin returns a.
    func (a *Alias) Origin() *Alias { return a.orig }
    
    // TypeParams returns the type parameters of the alias type a, or nil.
    // A generic Alias and its instances have the same type parameters.
    func (a *Alias) TypeParams() *TypeParamList { return a.tparams }
    
    // SetTypeParams sets the type parameters of the alias type a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top