Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for a$b (0.06 sec)

  1. pilot/pkg/networking/core/listener.go

    		len(chain.transportProtocol) == 0 &&
    		len(chain.destinationCIDRs) == 0
    }
    
    func (chain *filterChainOpts) conflictsWith(other *filterChainOpts) bool {
    	a, b := chain, other
    	if a == nil || b == nil {
    		return a == b
    	}
    	if a.transportProtocol != b.transportProtocol {
    		return false
    	}
    	if !slices.Equal(a.applicationProtocols, b.applicationProtocols) {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      }
    }
    
    // Output `shard_type`, which is the type of each shard, given `full_type`. If
    // the full shape is (num_cores_per_replica * a, b, c), then the shard shape is
    // (a, b, c). `context_op` is used for error reporting, in case of errors.
    LogicalResult GetShardShapedType(Operation* context_op,
                                     int num_cores_per_replica, Type full_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// Pseudo-ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		case "ClientSessionCache":
    			f.Set(reflect.ValueOf(NewLRUClientSessionCache(10)))
    		case "KeyLogWriter":
    			f.Set(reflect.ValueOf(io.Writer(os.Stdout)))
    		case "NextProtos":
    			f.Set(reflect.ValueOf([]string{"a", "b"}))
    		case "ServerName":
    			f.Set(reflect.ValueOf("b"))
    		case "ClientAuth":
    			f.Set(reflect.ValueOf(VerifyClientCertIfGiven))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			OpRsh16x8, OpRsh16x16, OpRsh16x32, OpRsh16x64,
    			OpRsh32x8, OpRsh32x16, OpRsh32x32, OpRsh32x64,
    			OpRsh64x8, OpRsh64x16, OpRsh64x32, OpRsh64x64:
    			// Check whether, for a >> b, we know that a is non-negative
    			// and b is all of a's bits except the MSB. If so, a is shifted to zero.
    			bits := 8 * v.Type.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. src/time/time_test.go

    	cfg := &quick.Config{MaxCount: 100000}
    	if testing.Short() {
    		cfg.MaxCount = 1000
    	}
    
    	// divisors of Second
    	f1 := func(ti int64, tns int32, logdi int32) bool {
    		d := Duration(1)
    		a, b := uint(logdi%9), (logdi>>16)%9
    		d <<= a
    		for i := 0; i < int(b); i++ {
    			d *= 5
    		}
    
    		// Make room for unix ↔ internal conversion.
    		// We don't care about behavior too close to ± 2^63 Unix seconds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testValueEqualityNotInstanceEquality() {
        TypeToken<List<String>> a = new TypeToken<List<String>>() {};
        TypeToken<List<String>> b = new TypeToken<List<String>>() {};
        assertEquals(a, b);
      }
    
      public <T> void testVariableTypeTokenNotAllowed() {
        /*
         * We'd use assertThrows here, but that causes no exception to be thrown under Java 8,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// This op is for temporary use by rewrite rules. It
    		// cannot appear in the generated assembly.
    		{name: "FlagConstant", aux: "FlagConstant"},
    
    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// atomic loads.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		if reflect.DeepEqual(scenario.eligibleNodes, eligibleNodes) {
    			fmt.Println("foo")
    		}
    
    		if compDiff := cmp.Diff(scenario.eligibleNodes, eligibleNodes, cmp.Comparer(func(a, b sets.Set[string]) bool {
    			return reflect.DeepEqual(a, b)
    		})); compDiff != "" {
    			t.Errorf("Unexpected eligible nodes (-want +got):\n%s", compDiff)
    		}
    	}
    
    	for name, scenario := range scenarios {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testValueEqualityNotInstanceEquality() {
        TypeToken<List<String>> a = new TypeToken<List<String>>() {};
        TypeToken<List<String>> b = new TypeToken<List<String>>() {};
        assertEquals(a, b);
      }
    
      public <T> void testVariableTypeTokenNotAllowed() {
        /*
         * We'd use assertThrows here, but that causes no exception to be thrown under Java 8,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top