Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 193 for EG (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    		Writes(returnType))
    	return ws
    }
    
    // WrapAggregatedDiscoveryToHandler wraps a handler with an option to
    // emit the aggregated discovery by passing in the aggregated
    // discovery type in content negotiation headers: eg: (Accept:
    // application/json;v=v2;g=apidiscovery.k8s.io;as=APIGroupDiscoveryList)
    func WrapAggregatedDiscoveryToHandler(handler http.Handler, aggHandler http.Handler) *WrappedHandler {
    	scheme := runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpKeyId.java

                    }
                    return keyIdUpped;
                default:
                    throw new IllegalStateException("The key ID must be in a valid form (eg 00B5050F or 0x00B5050F), given value: " + keyId);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.h

    // size of input tensors. The exception is that ops whose cost is irrelevant to
    // input sizes, such as tf.Shape and tf.Reshape, are whitelisted to have cheap
    // cost. This cost analysis is expected to be used conservatively (eg. use a low
    // threshold to decide whether a cost is cheap or expensive), as it might not be
    // accurate in some cases.
    //
    class CostAnalysis {
     public:
      explicit CostAnalysis(
          mlir::func::FuncOp func_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/SynchronizedDispatchConnection.java

            }
            lock.lock();
            try {
                if (dispatching) {
                    // Safety check: dispatching a message should not cause the thread to dispatch another message (eg should not do any logging)
                    throw new IllegalStateException("This thread is already dispatching a message.");
                }
                dispatching = true;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. istioctl/pkg/install/k8sversion/version.go

    func extractKubernetesVersion(versionInfo *version.Info) (int, error) {
    	ver, err := goversion.NewVersion(versionInfo.String())
    	if err != nil {
    		return 0, fmt.Errorf("could not parse %v", err)
    	}
    	// Segments provide slice of int eg: v1.19.1 => [1, 19, 1]
    	num := ver.Segments()[1]
    	return num, nil
    }
    
    // IsK8VersionSupported checks minimum supported Kubernetes version for Istio.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 02:07:51 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUpdater.java

            daemonRegistry.storeStopEvent(new DaemonStopEvent(timestamp, daemonContext.getPid(), status, reason));
        }
    
        @Override
        public void stop() {
            LOGGER.debug("Removing our presence to clients, eg. removing this address from the registry: {}", connectorAddress);
            try {
                daemonRegistry.remove(connectorAddress);
            } catch (DaemonRegistry.EmptyRegistryException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/operator-dump.go

    	cmd.PersistentFlags().StringVar(&args.common.watchedNamespaces, "watchedNamespaces", constants.IstioSystemNamespace,
    		"The namespaces the operator controller watches, could be namespace list separated by comma, eg. 'ns1,ns2'")
    	cmd.PersistentFlags().StringVar(&args.common.operatorNamespace, "operatorNamespace", operatorDefaultNamespace, OperatorNamespaceHelpstr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/replica_id_to_device_ordinal.cc

        }
      });
    
      if (require_device_ordinal_ops.size() == 1) {
        // If there is only one op which requires the device ordinal being set,
        // set the device ordinal to 0. Note: This is for single device use case
        // (eg. pf megacore) for which `_xla_replica_id` isn't set via the
        // replicate_to_islands pass.
        Operation* op = require_device_ordinal_ops.front();
        if (op->getAttrOfType<IntegerAttr>(kDeviceOrdinalAttr).getInt() == -1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ComponentIdentifierParserTest.groovy

            when:
            parser.parseNotation(notation)
    
            then:
            InvalidUserDataException ex = thrown()
            ex.message == "Invalid module component notation: $notation : must be a valid 3 part identifier, eg.: org.gradle:gradle:1.0"
    
            where:
            notation << ["foo", "foo:", "foo:bar", "foo:bar:", "foo:bar:baz:qux"]
        }
    
        @Unroll("Fails to parse #notation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/syscall/env_unix.go

    	envOnce.Do(copyenv)
    	if len(key) == 0 {
    		return EINVAL
    	}
    	for i := 0; i < len(key); i++ {
    		if key[i] == '=' || key[i] == 0 {
    			return EINVAL
    		}
    	}
    	// On Plan 9, null is used as a separator, eg in $path.
    	if runtime.GOOS != "plan9" {
    		for i := 0; i < len(value); i++ {
    			if value[i] == 0 {
    				return EINVAL
    			}
    		}
    	}
    
    	envLock.Lock()
    	defer envLock.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top