Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for a$b (0.14 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

       *
       * @since 16.0
       */
      public static <A, B> Converter<A, B> asConverter(final BiMap<A, B> bimap) {
        return new BiMapConverter<>(bimap);
      }
    
      private static final class BiMapConverter<A, B> extends Converter<A, B> implements Serializable {
        private final BiMap<A, B> bimap;
    
        BiMapConverter(BiMap<A, B> bimap) {
          this.bimap = checkNotNull(bimap);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

       *
       * @since 16.0
       */
      public static <A, B> Converter<A, B> asConverter(final BiMap<A, B> bimap) {
        return new BiMapConverter<>(bimap);
      }
    
      private static final class BiMapConverter<A, B> extends Converter<A, B> implements Serializable {
        private final BiMap<A, B> bimap;
    
        BiMapConverter(BiMap<A, B> bimap) {
          this.bimap = checkNotNull(bimap);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// match a path with a trailing slash.
    	// For the match to be exact, the number of pattern
    	// segments should be the same as the number of slashes in the path.
    	// E.g. "/a/b/{$}" and "/a/b/{...}" exactly match "/a/b/", but "/a/" does not.
    	return len(n.pattern.segments) == strings.Count(path, "/")
    }
    
    // matchingMethods return a sorted list of all methods that would match with the given host and path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    						}
    						return framework.NewStatus(framework.Unschedulable, fmt.Sprintf("node %q is not allowed", node.Node().Name))
    					}},
    				},
    			},
    			nodes:                 makeNodeList([]string{"a", "b"}),
    			filteredNodesStatuses: make(framework.NodeToStatusMap),
    			expectsErr:            false,
    			expectedNodes:         makeNodeList([]string{"a"}),
    			expectedStatuses: framework.NodeToStatusMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Mod64 <t> n (Const64 [c])) && c < 0 && c != -1<<63 => (Mod64 <t> n (Const64 <t> [-c]))
    
    // All other mods by constants, do A%B = A-(A/B*B).
    // This implements % with two * and a bunch of ancillary ops.
    // One of the * is free if the user's code also computes A/B.
    (Mod8   <t> x (Const8  [c])) && x.Op != OpConst8  && (c > 0 || c == -1<<7)
      => (Sub8  x (Mul8  <t> (Div8   <t> x (Const8  <t> [c])) (Const8  <t> [c])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	t.Helper()
    	var actualUIDs []types.UID
    	for uid := range q.inFlightPods {
    		actualUIDs = append(actualUIDs, uid)
    	}
    	sortUIDs := cmpopts.SortSlices(func(a, b types.UID) bool { return a < b })
    	if diff := cmp.Diff(uids, actualUIDs, sortUIDs); diff != "" {
    		t.Fatalf("Unexpected content of inFlightPods (-want, +have):\n%s", diff)
    	}
    	actualUIDs = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:[1.5,2.0] FAILED
    \\--- org:top:1.0
         \\--- conf
    """
        }
    
        void "marks project dependencies that cannot be resolved as 'FAILED'"() {
            given:
            createDirs("A", "B", "C")
            settingsFile << "include 'A', 'B', 'C'; rootProject.name='root'"
    
            buildFile << """
                configurations.create('conf')
                dependencies {
                  conf project(':A')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	// this option is set when active-active replication is in place between site A -> B,
    	// and site B does not have the object yet.
    	if opts.ProxyRequest || (opts.ProxyHeaderSet && !opts.ProxyRequest) { // true only when site B sets MinIOSourceProxyRequest header
    		return nil, oi, proxy
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    				clobbers: buildReg("DI SI CX"),
    			},
    			faultOnNilArg0: true,
    			faultOnNilArg1: true,
    		},
    
    		// (InvertFlags (CMPQ a b)) == (CMPQ b a)
    		// So if we want (SETL (CMPQ a b)) but we can't do that because a is a constant,
    		// then we do (SETL (InvertFlags (CMPQ b a))) instead.
    		// Rewrites will convert this to (SETG (CMPQ b a)).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    }
    
    // Returns whether the given type `a` is broadcast-compatible with `b`.
    bool IsBroadcastableElementsAttrAndType(Type a, Type b) {
      return OpTrait::util::getBroadcastedType(a, b) != Type();
    }
    
    // Returns whether the resultant type of any broadcastable operation with
    // operands `a` and `b` matches `expected_output`. Returns false if `a` is not
    // broadcast-compatible with `b`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top