Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for worklist (0.14 sec)

  1. pkg/kube/krt/filter.go

    	}
    }
    
    func (f *filter) Matches(object any, forList bool) bool {
    	// Check each of our defined filters to see if the object matches
    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    	// If we are listing, we already did this. Do not redundantly check.
    	if !forList {
    		// First, lookup directly by key. This is cheap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    					Network:           testNW,
    					CanonicalName:     "name1",
    					CanonicalRevision: "latest",
    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "name1",
    					Services: map[string]*workloadapi.PortList{
    						"ns1/se.istio.io": {
    							Ports: []*workloadapi.Port{
    								{
    									ServicePort: 80,
    									TargetPort:  8081, // port is overridden by inlined WE port
    								},
    							},
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds_test.go

    		Ports: model.PortList{
    			{
    				Name:     "grpc",
    				Port:     0,
    				Protocol: protocol.GRPC,
    			},
    		},
    		MeshExternal: true,
    		Resolution:   model.ClientSideLB,
    	}
    	m.AddService(svc)
    	m.AddInstance(&model.ServiceInstance{
    		Service: &model.Service{
    			Hostname: "localuds.cluster.local",
    			Ports: model.PortList{
    				{
    					Name:     "grpc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		Attributes: model.ServiceAttributes{
    			Name:      "istiod",
    			Namespace: "istio-system",
    		},
    		Hostname:       host.Name(testSvcHost),
    		DefaultAddress: "127.0.1.12",
    		Ports: model.PortList{
    			{
    				Name:     "grpc-main",
    				Port:     xdsPort,
    				Protocol: protocol.GRPC, // SetEndpoints hardcodes this
    			},
    		},
    	})
    	sd.SetEndpoints(testSvcHost, "istio-system", []*model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer_test.go

    					for i, workLeft := range []*int64{&globalsScanWorkLeft, &stackScanWorkLeft, &heapScanWorkLeft} {
    						if *workLeft == 0 {
    							continue
    						}
    						if *workLeft > work {
    							deltas[i] += work
    							*workLeft -= work
    							work = 0
    							break
    						} else {
    							deltas[i] += *workLeft
    							work -= *workLeft
    							*workLeft = 0
    						}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                if (schema.getType().getRawClass() == List.class) {
                    return new ProjectionOnlyNodeInitializer(
                        ScalarCollectionModelProjection.forList(schema.getElementType(), !writable),
                        new ModelElementProjection(schema.getType())
                    );
                } else {
                    return new ProjectionOnlyNodeInitializer(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

        }
    
        public void setPort_Terms(Collection<Integer> portList) {
            setPort_Terms(portList, null);
        }
    
        public void setPort_Terms(Collection<Integer> portList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            TermsQueryBuilder builder = regTermsQ("port", portList);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

    bool QuantizationDriver::PropagateParamsAndReturnIfChanged() {
      // TODO: b/323478683 - Use a typed indicator instead of a bool value.
      bool changed = false;
      while (!work_list_.empty()) {
        Operation* op = work_list_.back();
        work_list_.pop_back();
    
        // This op has been quantized, so we should not consider it again.
        if (quantized_.contains(op)) continue;
        quantized_.insert(op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    	serviceDiscovery := memregistry.NewServiceDiscovery(&model.Service{
    		Hostname:       "test.example.org",
    		DefaultAddress: "1.1.1.1",
    		Ports: model.PortList{
    			&model.Port{
    				Name:     "default",
    				Port:     8080,
    				Protocol: protocol.HTTP,
    			},
    		},
    	})
    
    	meshConfig := &meshconfig.MeshConfig{
    		ConnectTimeout: &durationpb.Duration{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

        }
    
        public void setPort_Terms(Collection<Integer> portList) {
            setPort_Terms(portList, null);
        }
    
        public void setPort_Terms(Collection<Integer> portList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            TermsQueryBuilder builder = regTermsQ("port", portList);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 95.5K bytes
    - Viewed (0)
Back to top