Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for subst (0.22 sec)

  1. src/regexp/syntax/parse.go

    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    	subs := p.stack[i:]
    	p.stack = p.stack[:i]
    
    	// Make sure top class is clean.
    	// All the others already are (see swapVerticalBar).
    	if len(subs) > 0 {
    		cleanAlt(subs[len(subs)-1])
    	}
    
    	// Empty alternate is special case
    	// (shouldn't happen but easy to handle).
    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpNoMatch))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    	if err == nil {
    		t.Fatalf("X509KeyPair didn't return an error when arguments were switched")
    	}
    	if subStr := "been switched"; !strings.Contains(err.Error(), subStr) {
    		t.Fatalf("Expected %q in the error when switching arguments to X509KeyPair, but the error was %q", subStr, err)
    	}
    
    	_, err = X509KeyPair([]byte(rsaCertPEM), []byte(rsaCertPEM))
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public NavigableSet<E> subSet(
            E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
          synchronized (mutex) {
            return Synchronized.navigableSet(
                delegate().subSet(fromElement, fromInclusive, toElement, toInclusive), mutex);
          }
        }
    
        @Override
        public SortedSet<E> subSet(E fromElement, E toElement) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public NavigableSet<E> subSet(
            E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
          synchronized (mutex) {
            return Synchronized.navigableSet(
                delegate().subSet(fromElement, fromInclusive, toElement, toInclusive), mutex);
          }
        }
    
        @Override
        public SortedSet<E> subSet(E fromElement, E toElement) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	var subsetHash, subsetPLSHash *networking.LoadBalancerSettings_ConsistentHashLB
    	for _, subset := range rule.GetSubsets() {
    		if subset.GetName() == destination.GetSubset() {
    			subsetPortLevelSettings := subset.GetTrafficPolicy().GetPortLevelSettings()
    			subsetHash = subset.GetTrafficPolicy().GetLoadBalancer().GetConsistentHash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

      ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. src/strings/strings_test.go

    }
    
    func TestContains(t *testing.T) {
    	for _, ct := range ContainsTests {
    		if Contains(ct.str, ct.substr) != ct.expected {
    			t.Errorf("Contains(%s, %s) = %v, want %v",
    				ct.str, ct.substr, !ct.expected, ct.expected)
    		}
    	}
    }
    
    var ContainsAnyTests = []struct {
    	str, substr string
    	expected    bool
    }{
    	{"", "", false},
    	{"", "a", false},
    	{"", "abc", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (SUBS x (SLLconst [c] y)) => (SUBSshiftLL x y [c])
    (SUBS (SLLconst [c] y) x) => (RSBSshiftLL x y [c])
    (SUBS x (SRLconst [c] y)) => (SUBSshiftRL x y [c])
    (SUBS (SRLconst [c] y) x) => (RSBSshiftRL x y [c])
    (SUBS x (SRAconst [c] y)) => (SUBSshiftRA x y [c])
    (SUBS (SRAconst [c] y) x) => (RSBSshiftRA x y [c])
    (SUBS x (SLL y z)) => (SUBSshiftLLreg x y z)
    (SUBS (SLL y z) x) => (RSBSshiftLLreg x y z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

    dependencies {
        conf 'foo:bar:1'
        conf project(':sub')
    }
    
    configurations.all {
      resolutionStrategy {
          dependencySubstitution { DependencySubstitutions subs ->
              subs.substitute(subs.module('foo:bar:1')).using(subs.project(':sub'))
          }
          failOnVersionConflict()
      }
    }
    
    """
    
            when:
            succeeds ':checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	"--master=192.168.4.20",
    	"--max-endpoints-per-slice=200",
    	"--min-resync-period=8h",
    	"--mirroring-concurrent-service-endpoint-syncs=2",
    	"--mirroring-max-endpoints-per-subset=1000",
    	"--namespace-sync-period=10m",
    	"--node-cidr-mask-size=48",
    	"--node-cidr-mask-size-ipv4=48",
    	"--node-cidr-mask-size-ipv6=108",
    	"--node-eviction-rate=0.2",
    	"--node-monitor-grace-period=30s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top