Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 880 for logical (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    		*types.Label,   // Labels are function-local.
    		*types.PkgName: // PkgNames are file-local.
    		return "", fmt.Errorf("no path for %v", obj)
    
    	case *types.Var:
    		// Could be:
    		// - a field (obj.IsField())
    		// - a func parameter or result
    		// - a local var.
    		// Sadly there is no way to distinguish
    		// a param/result from a local
    		// so we must proceed to the find.
    
    	case *types.Func:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/stats_test.go

    								CaCertFile:         "/etc/certs/custom/root-cert.pem",
    								InsecureSkipVerify: true,
    							},
    						})
    					}
    				})
    		})
    }
    
    // TestStatsTCPFilter includes common test logic for stats and metadataexchange filters running
    // with nullvm and wasm runtime for TCP.
    func TestStatsTCPFilter(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            DynamicProperties systemProps = new DynamicProperties(file);
            SingletonLaContainerFactory.getContainer().register(systemProps, "systemProperties");
    
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(null));
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(""));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    No sub-projects
    """
        }
    
        def "project project structure and software types for multi-project build using declarative dcl"() {
            given: "a build-logic build registering an ecosystem plugin defining several software types via several plugins"
            file("build-logic/src/main/java/com/example/restricted/LibraryExtension.java") << """
                package com.example.restricted;
    
                import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/ep_filters_test.go

    )
    
    var networkFiltered = []networkFilterCase{
    	{
    		name:  "from_network1_cluster1a",
    		proxy: makeProxy("network1", "cluster1a"),
    		want: []xdstest.LocLbEpInfo{
    			{
    				LbEps: []xdstest.LbEpInfo{
    					// 3 local endpoints on network1
    					{Address: "10.0.0.1", Weight: 6},
    					{Address: "10.0.0.2", Weight: 6},
    					{Address: "10.0.0.3", Weight: 6},
    					// 1 endpoint on network2, cluster2a
    					{Address: "2.2.2.2", Weight: 6},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

      echo ""
      echo "(... Fetching current release versions ...)"
      echo ""
    
      # NOTE: IF YOU CHANGE THE FOLLOWING LIST, ALSO UPDATE test/e2e/cluster_upgrade.go
      local release_stable
      local release_latest
      local ci_latest
    
      release_stable=$(curl -sL https://dl.k8s.io/release/stable.txt)
      release_latest=$(curl -sL https://dl.k8s.io/release/latest.txt)
      ci_latest=$(curl -sL https://dl.k8s.io/ci/latest.txt)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute.go

    // For example, a service of the form foo.local.campus.net on port 80, with local domain "local.campus.net"
    // could be accessed as http://foo:80 within the .local network, as http://foo.local:80 (by other clients
    // in the campus.net domain), as http://foo.local.campus:80, etc.
    // NOTE: When a sidecar in remote.campus.net domain is talking to foo.local.campus.net,
    // we should only generate foo.local, foo.local.campus, etc (and never just "foo").
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

                        return NoOpBuildCacheController.INSTANCE;
                    }
    
                    DirectoryBuildCache local = buildCacheConfiguration.getLocal();
                    BuildCache remote = buildCacheConfiguration.getRemote();
    
                    boolean localEnabled = local.isEnabled();
                    boolean remoteEnabled = remote != null && remote.isEnabled();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe_test.go

    				"spiffe://foo/ns/def/sa/def":           {},
    			},
    		},
    		{
    			name:      "TwoIentities",
    			spiffeURI: []string{"spiffe://cluster.local/ns/def/sa/def", "spiffe://cluster.local/ns/a/sa/a"},
    			trustDomains: []string{
    				"foo",
    			},
    			want: map[string]struct{}{
    				"spiffe://cluster.local/ns/def/sa/def": {},
    				"spiffe://foo/ns/def/sa/def":           {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    			internalLogIf(GlobalContext, err)
    			continue
    		}
    		hosts[i] = host
    	}
    
    	return hosts
    }
    
    // peers will return all peers, including local.
    // The local peer is returned as a separate string.
    func (l EndpointServerPools) peers() (peers []string, local string) {
    	allSet := set.NewStringSet()
    	for _, ep := range l {
    		for _, endpoint := range ep.Endpoints {
    			if endpoint.Type() != URLEndpointType {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top