Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,241 for Instances (5.82 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactoryTest.groovy

    The following types/formats are supported:
      - Instances of ConfigurablePublishArtifact.
      - Instances of PublishArtifact.
      - Instances of AbstractArchiveTask, for example jar.
      - Instances of Provider<RegularFile>.
      - Instances of Provider<Directory>.
      - Instances of Provider<File>.
      - Instances of RegularFile.
      - Instances of Directory.
      - Instances of File.
      - Maps with 'file' key'''))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    	}
    	for _, instance := range instances {
    		// For service instances with the same port,
    		// we still need to capture all the instances on this port, as its required to populate telemetry metadata
    		// The first instance will be used as the "primary" instance; this means if we have an conflicts between
    		// Services the first one wins
    		port := int(instance.Port.TargetPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

    	err := json.Unmarshal([]byte(smallInstance), &obj)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	instances := make([]map[string]interface{}, 0, b.N)
    	for i := 0; i < b.N; i++ {
    		instances = append(instances, runtime.DeepCopyJSON(obj))
    	}
    
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		Prune(instances[i], schema, true)
    	}
    }
    
    func BenchmarkDeepCopy(b *testing.B) {
    	b.StopTimer()
    	b.ReportAllocs()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    			}
    		} else {
    			expectedHosts = map[host.Name]struct{}{
    				clusterLocalHost: {},
    			}
    		}
    
    		instances := ic.getProxyServiceTargets()
    		if len(instances) != len(expectedHosts) {
    			return fmt.Errorf("expected 1 service instance, found %d", len(instances))
    		}
    		for _, si := range instances {
    			if si.Service == nil {
    				return fmt.Errorf("proxy ServiceInstance has nil service")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/traffic.go

    			echoT.RunToN(c.toN, func(t framework.TestContext, src echo.Instance, dsts echo.Services) {
    				doTest(t, src, dsts)
    			})
    		} else if c.viaIngress {
    			echoT.RunViaIngress(func(t framework.TestContext, from ingress.Instance, to echo.Target) {
    				doTest(t, from, echo.Services{to.Instances()})
    			})
    		} else {
    			echoT.Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

    """
    
            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Thing.")
            failure.assertHasCause("Could not generate a decorated class for type Thing.")
            failure.assertHasCause("Cannot have abstract method Thing.getProp().")
        }
    
        def "services are injected into instances using constructor or getter"() {
            buildFile """
                class Thing1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

        --image-project="${image_project}" --instance-name-prefix="${instance_prefix}" \
        --delete-instances="${delete_instances}" --test_args="${test_args}" --instance-metadata="${metadata}" \
        --image-config-file="${image_config_file}" --system-spec-name="${system_spec_name}" \
        --runtime-config="${runtime_config}" --preemptible-instances="${preemptible_instances}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    //
    // To prevent infinite expansion of named instances that are created outside of
    // type-checking, instances share a Context with other instances created during
    // their expansion. Via the pidgeonhole principle, this guarantees that in the
    // presence of a cycle of named types, expansion will eventually find an
    // existing instance in the Context and short-circuit the expansion.
    //
    // Once an instance is complete, we can nil out this shared Context to unpin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

            // That is, the plugin container has the instance that we want, but we don't think (we can't know) it has been applied
            Object instance = findInstance(pluginClass, pluginContainer);
            if (instance == null) {
                instance = instantiatePlugin(pluginClass);
            }
    
            return Cast.uncheckedCast(instance);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/dns/server/name_table_test.go

    	instances := make(map[int][]*model.IstioEndpoint)
    	for _, port := range service.Ports {
    		instances[port.Port] = makeInstances(proxy, service, port.Port, port.Port)
    		instances[port.Port][0].HostName = hostname
    		instances[port.Port][0].SubDomain = subdomain
    		instances[port.Port][0].Network = proxy.Metadata.Network
    		instances[port.Port][0].Locality.ClusterID = proxy.Metadata.ClusterID
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top