Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 284 for proc (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    		generatePod("128.0.0.3", "cpod3", "nsb", "", "", map[string]string{"app": "prod-app-2"}, map[string]string{}),
    	}
    
    	addPods(t, c, fx, pods...)
    
    	// Verify podCache
    	wantLabels := map[string]labels.Instance{
    		"128.0.0.1": {"app": "test-app"},
    		"128.0.0.2": {"app": "prod-app-1"},
    		"128.0.0.3": {"app": "prod-app-2"},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    		ConfigNamespace: serviceImportNamespace,
    		Labels: map[string]string{
    			"app":                      "prod-app",
    			label.SecurityTlsMode.Name: "mutual",
    		},
    		Metadata: &model.NodeMetadata{
    			ServiceAccount: "account",
    			ClusterID:      ic.Cluster(),
    			Labels: map[string]string{
    				"app":                      "prod-app",
    				label.SecurityTlsMode.Name: "mutual",
    			},
    		},
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    	if len(ignoredExtendedResources) == 0 {
    		return fExtenders, nil
    	}
    
    	for i := range profiles {
    		prof := &profiles[i]
    		var found = false
    		for k := range prof.PluginConfig {
    			if prof.PluginConfig[k].Name == noderesources.Name {
    				// Update the existing args
    				pc := &prof.PluginConfig[k]
    				args, ok := pc.Args.(*schedulerapi.NodeResourcesFitArgs)
    				if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

        }
    
        def "registers input property for #prop on #type.simpleName"() {
            given:
            def task = expectTaskCreated(type, value as Object[])
    
            expect:
            inputProperties(task)[prop] == expected
    
            where:
            type                                      | prop                 | value                            | expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

          loc, output.getType(), slice_op,
          Create1DConstValue(builder, loc, new_shape));
    }
    
    bool IsPrecisionEmpty(StringAttr prec_str) {
      xla::PrecisionConfig prec;
      prec.ParseFromString(prec_str.str());
      return !prec.operand_precision_size();
    }
    
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.inc"
    
    void ConvertTfXlaOpToTfOpPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/fmt/print.go

    				i++
    				p.fmt.prec, p.fmt.precPresent, argNum = intFromArg(a, argNum)
    				// Negative precision arguments don't make sense
    				if p.fmt.prec < 0 {
    					p.fmt.prec = 0
    					p.fmt.precPresent = false
    				}
    				if !p.fmt.precPresent {
    					p.buf.writeString(badPrecString)
    				}
    				afterIndex = false
    			} else {
    				p.fmt.prec, p.fmt.precPresent, i = parsenum(format, i, end)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/AccessTokenDbm.java

                    "updatedTime");
        }
    
        @Override
        public PropertyGateway findPropertyGateway(final String prop) {
            return doFindEpg(_epgMap, prop);
        }
    
        // ===================================================================================
        //                                                                          Table Info
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/volume/util/fsquota/project.go

    	if err != nil {
    		return "", err
    	}
    	filename := f.Name()
    	if err := os.Chmod(filename, mode); err != nil {
    		return "", err
    	}
    	for _, proj := range projects {
    		if proj.isValid {
    			if _, err := f.WriteString(fmt.Sprintf("%s\n", proj.line)); err != nil {
    				f.Close()
    				os.Remove(filename)
    				return "", err
    			}
    		}
    	}
    	if err := f.Close(); err != nil {
    		os.Remove(filename)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/math/big/rat_test.go

    		arg = ratBinArg{test.x, test.y, test.prod}
    		testRatBin(t, i, "Mul", (*Rat).Mul, arg)
    
    		arg = ratBinArg{test.y, test.x, test.prod}
    		testRatBin(t, i, "Mul symmetric", (*Rat).Mul, arg)
    
    		if test.x != "0" {
    			arg = ratBinArg{test.prod, test.x, test.y}
    			testRatBin(t, i, "Quo", (*Rat).Quo, arg)
    		}
    
    		if test.y != "0" {
    			arg = ratBinArg{test.prod, test.y, test.x}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
              periodSeconds: 15
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top