Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 919 for Instances (0.24 sec)

  1. android/guava/src/com/google/common/collect/Cut.java

     * way of "cutting" a "number line" (actually of instances of type {@code C}, not necessarily
     * "numbers") into two sections; this can be done below a certain value, above a certain value,
     * below all values or above all values. With this object defined in this way, an interval can
     * always be represented by a pair of {@code Cut} instances.
     *
     * @author Kevin Bourrillion
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    			Type:    apiextensionsv1.Terminating,
    			Status:  apiextensionsv1.ConditionFalse,
    			Reason:  "OverlappingBuiltInResource",
    			Message: "instances overlap with built-in resources in storage",
    		})
    	} else if apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Established) {
    		cond, deleteErr := c.deleteInstances(crd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    import static java.util.Objects.requireNonNull;
    
    /**
     * A factory to create model builder instances when no dependency injection is available. Note: This class is
     * only meant as a utility for developers that want to employ the model builder outside the Maven build system, Maven
     * plugins should always acquire model builder instances via dependency injection. Developers might want to subclass
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    					hosts.InsertAll(s.Hosts...)
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    func udpSupportedPort(number uint32, instances []ServiceTarget) bool {
    	for _, w := range instances {
    		if int(number) == w.Port.Port && w.Port.Protocol == protocol.UDP {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/wasmplugin_test.go

    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    		"TestWasmModuleURL": wasmModuleURL,
    		"WasmPluginVersion": pluginVersion,
    		"TargetAppName":     GetTarget().(echo.Instances).NamespacedName().Name,
    		"TargetGatewayName": GetTarget().(echo.Instances).ServiceName() + "-gateway",
    	}
    
    	if len(imagePullPolicy) != 0 {
    		args["ImagePullPolicy"] = imagePullPolicy
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/echos.go

    	// Custom allows for configuring custom echo deployments. If a deployment's namespace
    	// is nil, it will be created in all namespaces. Otherwise, it must match one of the
    	// namespaces configured above.
    	//
    	// Custom echo instances will be accessible from the `All` field in the namespace(s) under which they
    	// were created.
    	Configs echo.ConfigGetter
    }
    
    // AddConfigs appends to the configs to be deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		for _, instance := range esc.endpointCache.get(svc.Hostname) {
    			port, f := svc.Ports.Get(instance.ServicePortName)
    			if !f {
    				log.Warnf("unexpected state, svc %v missing port %v", svc.Hostname, instance.ServicePortName)
    				continue
    			}
    			// consider multiple IP scenarios
    			for _, ip := range proxy.IPAddresses {
    				if ip != instance.Address {
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    					targetPort.num = servicePort.Port
    				}
    
    				instance := serviceInstanceFromWorkloadInstance(service, servicePort, targetPort, si)
    				if instance != nil {
    					out = append(out, model.ServiceInstanceToTarget(instance))
    				}
    			}
    		}
    	}
    	return out
    }
    
    // WorkloadInstanceHandler defines the handler for service instances generated by other registries
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config.go

    			portGen.Service.SetUsed(p.ServicePort)
    		}
    		if p.WorkloadPort > 0 {
    			if portGen.Instance.IsUsed(p.WorkloadPort) {
    				return fmt.Errorf("failed configuring port %s: instance port already used %d", p.Name, p.WorkloadPort)
    			}
    			portGen.Instance.SetUsed(p.WorkloadPort)
    		}
    	}
    
    	// Second pass: try to make unassigned instance ports match service port.
    	for i, p := range c.Ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. tests/integration/security/egress_gateway_origination_test.go

    // TLS origination at Gateway happens using DestinationRule with CredentialName reading k8s secret at the gateway proxy.
    func newTLSGateway(t test.Failer, ctx resource.Context, clientNamespace namespace.Instance,
    	to echo.Instances, egressNs string, egressSvc string, egressLabel string,
    ) {
    	args := map[string]any{"to": to, "EgressNamespace": egressNs, "EgressService": egressSvc, "EgressLabel": egressLabel}
    
    	gateway := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top