Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,195 for SplitV (0.16 sec)

  1. pilot/pkg/security/authz/model/generator.go

    }
    
    type envoyFilterGenerator struct{}
    
    func (efg envoyFilterGenerator) permission(key, value string, _ bool) (*rbacpb.Permission, error) {
    	// Split key of format "experimental.envoy.filters.a.b[c]" to "envoy.filters.a.b" and "c".
    	parts := strings.SplitN(strings.TrimSuffix(strings.TrimPrefix(key, "experimental."), "]"), "[", 2)
    
    	if len(parts) != 2 {
    		return nil, fmt.Errorf("invalid key: %v", key)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security.go

    	re(`-pthread`),
    	re(`-rdynamic`),
    	re(`-shared`),
    	re(`-?-static([-a-z0-9+]*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`-v`),
    
    	// Note that any wildcards in -Wl need to exclude comma,
    	// since -Wl splits its argument at commas and passes
    	// them all to the linker uninterpreted. Allowing comma
    	// in a wildcard would allow tunneling arbitrary additional
    	// linker arguments through one of these.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

    bool IsReplicatedSharding(const xla::OpSharding& sharding);
    
    // Returns a map of dimension indices and number of splits for tiled sharding.
    absl::StatusOr<std::map<int, int>> GetDimensionIndicesAndNumSplitsFromSharding(
        const xla::OpSharding& sharding);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/DocsTest.kt

    mkdir test-splits
    del /f /q test-splits\include-test-classes.properties
    del /f /q test-splits\exclude-test-classes.properties
    (
    $linesWithEcho
    ) > test-splits\$action-test-classes.properties
    echo "Tests to be ${action}d in this build"
    type test-splits\$action-test-classes.properties
    """
    
        return {
            script {
                name = "PREPARE_TEST_CLASSES"
                executionMode = BuildStep.ExecutionMode.ALWAYS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_split.txt

    go get example.net/...@none
    go get example.net/split/...@v0.1.0
    go list -m all
    stdout '^example.net/split v0.1.0 '
    
    
    -- go.mod --
    module m
    
    go 1.16
    
    require example.net/split v0.2.0
    
    replace (
    	example.net/split v0.1.0 => ./split.1
    	example.net/split v0.2.0 => ./split.2
    	example.net/split v0.2.1 => ./split.2
    	example.net/split v0.3.0 => ./split.3
    	example.net/split/nested v0.0.0 => ./nested.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/util/internal/ArgumentsSplitterTest.groovy

            split('a') == ['a']
            split('a b\tc') == ['a', 'b', 'c']
        }
    
        def ignoresExtraWhiteSpaceBetweenArguments() {
            expect:
            split('  a \t') == ['a']
            split('a  \t\t b ') == ['a', 'b']
        }
    
        def breaksUpCommandLineIntoDoubleQuotedArguments() {
            expect:
            split('"a b c"') == ['a b c']
            split('a "b c d" e') == ['a', 'b c d', 'e']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 2.2K bytes
    - Viewed (0)
  7. cmd/sftp-server.go

    			allowPubKeys = filterAlgos(arg, strings.Split(tokens[1], ","), supportedPubKeyAuthAlgos)
    		case "kex-algos":
    			allowKexAlgos = filterAlgos(arg, strings.Split(tokens[1], ","), supportedKexAlgos)
    		case "cipher-algos":
    			allowCiphers = filterAlgos(arg, strings.Split(tokens[1], ","), supportedCiphers)
    		case "mac-algos":
    			allowMACs = filterAlgos(arg, strings.Split(tokens[1], ","), supportedMACs)
    		case "trusted-user-ca-key":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/runtime/mspanset.go

    	return uint32(h >> 32)
    }
    
    // tail returns the tail of a headTailIndex value.
    func (h headTailIndex) tail() uint32 {
    	return uint32(h)
    }
    
    // split splits the headTailIndex value into its parts.
    func (h headTailIndex) split() (head uint32, tail uint32) {
    	return h.head(), h.tail()
    }
    
    // atomicHeadTailIndex is an atomically-accessed headTailIndex.
    type atomicHeadTailIndex struct {
    	u atomic.Uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    		Path:   path,
    	}
    }
    
    func GetHTTPClient(req *http.Request) string {
    	if ua := req.UserAgent(); len(ua) != 0 {
    		return ua
    	}
    	return "unknown"
    }
    
    // SourceIPs splits the comma separated X-Forwarded-For header and joins it with
    // the X-Real-Ip header and/or req.RemoteAddr, ignoring invalid IPs.
    // The X-Real-Ip is omitted if it's already present in the X-Forwarded-For chain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

      /** Parses a single value. */
      private interface ValueParser {
        void parse(CacheBuilderSpec spec, String key, @CheckForNull String value);
      }
    
      /** Splits each key-value pair. */
      private static final Splitter KEYS_SPLITTER = Splitter.on(',').trimResults();
    
      /** Splits the key from the value. */
      private static final Splitter KEY_VALUE_SPLITTER = Splitter.on('=').trimResults();
    
      /** Map of names to ValueParser. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top