Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 284 for proc (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        - registry.k8s.io/coredns:1.1.3
        sizeBytes: 45587362
      - names:
        - prom/prometheus@sha256:483f4c9d7733699ba79facca9f8bcce1cef1af43dfc3e7c5a1882aa85f53cb74
        - prom/prometheus:v1.1.3
        sizeBytes: 45493941
      nodeInfo:
        architecture: amd64
        bootID: a32eca78-4ad4-4b76-9252-f143d6c2ae61
        containerRuntimeVersion: docker://17.3.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java

                    "virtualHost");
        }
    
        @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
    - 12.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    func isValid(env *cel.Env, expr string, activation any) (bool, error) {
    	ast, issues := env.Compile(expr)
    	if len(issues.Errors()) > 0 {
    		return false, issues.Err()
    	}
    	prog, err := env.Program(ast)
    	if err != nil {
    		return false, err
    	}
    	result, _, err := prog.Eval(activation)
    	if err != nil {
    		return false, err
    	}
    	return result.Value() == true, nil
    }
    
    type fakeAuthorizer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/math/rand/rand.go

    func (r *Rand) int31n(n int32) int32 {
    	v := r.Uint32()
    	prod := uint64(v) * uint64(n)
    	low := uint32(prod)
    	if low < uint32(n) {
    		thresh := uint32(-n) % uint32(n)
    		for low < thresh {
    			v = r.Uint32()
    			prod = uint64(v) * uint64(n)
    			low = uint32(prod)
    		}
    	}
    	return int32(prod >> 32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server.go

    		var prom PrometheusScrapeConfiguration
    		if err := json.Unmarshal([]byte(cfg), &prom); err != nil {
    			return nil, fmt.Errorf("failed to unmarshal %s: %v", PrometheusScrapingConfig.Name, err)
    		}
    		log.Infof("Prometheus scraping configuration: %v", prom)
    		if prom.Scrape != "false" {
    			s.prometheus = &prom
    			if s.prometheus.Path == "" {
    				s.prometheus.Path = "/metrics"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/DataConfigDbm.java

                    "virtualHosts");
        }
    
        @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
    - 13.8K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/list.yaml.injected

                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
    - 14.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        - registry.k8s.io/coredns:1.1.3
        sizeBytes: 45587362
      - names:
        - prom/prometheus@sha256:483f4c9d7733699ba79facca9f8bcce1cef1af43dfc3e7c5a1882aa85f53cb74
        - prom/prometheus:v1.1.3
        sizeBytes: 45493941
      nodeInfo:
        architecture: amd64
        bootID: a32eca78-4ad4-4b76-9252-f143d6c2ae61
        containerRuntimeVersion: docker://17.3.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

       ]\n    }\n  ]\n}\n\nIf instead you want to only run the policy on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n  \"matchExpressions\": [\n    {\n      \"key\": \"environment\",\n      \"operator\": \"In\",\n      \"values\": [\n        \"prod\",\n        \"staging\"\n      ]\n    }\n  ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  10. src/go/constant/value.go

    			goto Error
    		}
    		// For unsigned types, the result will be negative and
    		// thus "too large": We must limit the result precision
    		// to the type's precision.
    		if prec > 0 {
    			z.AndNot(z, newInt().Lsh(big.NewInt(-1), prec)) // z &^= (-1)<<prec
    		}
    		return makeInt(z)
    
    	case token.NOT:
    		switch y := y.(type) {
    		case unknownVal:
    			return y
    		case boolVal:
    			return !y
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top