Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 193 for EG (0.04 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

         */
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase(Locale.ROOT);
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -> camel case, with_underscores -> with underscores
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/TcpOutgoingConnector.java

            }
            InetEndpoint address = (InetEndpoint) destinationAddress;
            LOGGER.debug("Attempting to connect to {}.", address);
    
            // Try each address in turn. Not all of them are necessarily reachable (eg when socket option IPV6_V6ONLY
            // is on - the default for debian and others), so we will try each of them until we can connect
            List<InetAddress> candidateAddresses = address.getCandidates();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/experimental/public/signature_def_function.h

    // were traced from, as things like composite tensors decay into their
    // internal dense tensor representation.
    // Second, all inputs and outputs are "named", and these names are load bearing
    // (eg: they are part of the interface of tensorflow_serving):
    // https://github.com/tensorflow/serving/blob/e0d247b2e4050713194b8fad0be24a0636df7209/tensorflow_serving/apis/predict.proto#L21
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/root.go

    	ImagePullSecretsHelpStr            = `The imagePullSecrets are used to pull the operator image from the private registry,
    could be secret list separated by comma, eg. '--imagePullSecrets imagePullSecret1,imagePullSecret2'`
    	OperatorNamespaceHelpstr  = `The namespace the operator controller is installed into.`
    	OperatorRevFlagHelpStr    = `Target revision for the operator.`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/names/controller_names.go

    //  2. used anywhere inside the controller itself:
    //     2.1. [TODO] logging should use a canonical controller name when referencing a controller (Eg. Starting X, Shutting down X)
    //     2.2. [TODO] emitted events should have an EventSource.Component set to the controller name (usually when initializing an EventRecorder)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/runtime/signal_solaris.go

    	/* 36 */ {_SigSetStack + _SigUnblock, "SIGCANCEL: reserved signal for thread cancellation"}, // Oracle's spelling of cancellation.
    	/* 37 */ {_SigNotify, "SIGLOST: resource lost (eg, record-lock lost)"},
    	/* 38 */ {_SigNotify, "SIGXRES: resource control exceeded"},
    	/* 39 */ {_SigNotify, "SIGJVM1: reserved signal for Java Virtual Machine"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

         */
        @SuppressWarnings("StringCaseLocaleUsage")
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

        private String deploymentTimestamp;
    
        public void transformForResolve(Artifact artifact, RepositoryRequest request) throws ArtifactResolutionException {
            // Only select snapshots that are unresolved (eg 1.0-SNAPSHOT, not 1.0-20050607.123456)
            if (artifact.isSnapshot() && artifact.getBaseVersion().equals(artifact.getVersion())) {
                try {
                    String version = resolveVersion(artifact, request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. src/runtime/memclr_arm64.s

    	TBNZ	$31, R5, no_zva
    	CBNZ	R5, zero_by_line
    	// DCZID_EL0 bit assignments
    	// [63:5] Reserved
    	// [4]    DZP, if bit set DC ZVA instruction is prohibited, else permitted
    	// [3:0]  log2 of the block size in words, eg. if it returns 0x4 then block size is 16 words
    	MRS	DCZID_EL0, R3
    	TBZ	$4, R3, init
    	// ZVA not available
    	MOVW	$~0, R5
    	MOVW	R5, block_size<>(SB)
    	B	no_zva
    
    init:
    	MOVW	$4, R9
    	ANDW	$15, R3, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse.go

    // indicates the parameter whose value will be placed into that field. (The code assumes
    // that we don't use both the short and long forms of any parameter names (eg, "-s" vs
    // "--source"), which is currently true, but it could be extended if necessary.) The
    // `negatable` tag indicates if a parameter is allowed to be preceded by "!".
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top