Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 180 for Result (0.16 sec)

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

        ImmutableSortedMap<K, V> result = descendingMap;
        if (result == null) {
          if (isEmpty()) {
            return emptyMap(Ordering.from(comparator()).reverse());
          } else {
            return new ImmutableSortedMap<>(
                (RegularImmutableSortedSet<K>) keySet.descendingSet(), valueList.reverse(), this);
          }
        }
        return result;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	type WrongString struct {
    		Message string `json:"result,string"`
    	}
    	tests := []struct {
    		CaseName
    		in, err string
    	}{
    		{Name(""), `{"result":"x"}`, `json: invalid use of ,string struct tag, trying to unmarshal "x" into string`},
    		{Name(""), `{"result":"foo"}`, `json: invalid use of ,string struct tag, trying to unmarshal "foo" into string`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// for all bitfield ops lsb is auxInt>>8, width is auxInt&0xff
    		// insert low width bits of arg1 into the result starting at bit lsb, copy other bits from arg0
    		{name: "BFI", argLength: 2, reg: gp21nog, asm: "BFI", aux: "ARM64BitField", resultInArg0: true},
    		// extract width bits of arg1 starting at bit lsb and insert at low end of result, copy other bits from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	if (pc == nil) == (err == nil) {
    		panic("net/http: internal error: misuse of tryDeliver")
    	}
    	w.ctx = nil
    	w.done = true
    
    	w.result <- connOrError{pc: pc, err: err, idleAt: idleAt}
    	close(w.result)
    
    	return true
    }
    
    // cancel marks w as no longer wanting a result (for example, due to cancellation).
    // If a connection has been delivered already, cancel returns it with t.putOrCloseIdleConn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    #define DEBUG_TYPE "tf-tfl-legalization"
    
    namespace mlir {
    namespace TFL {
    namespace {
    // Returns a TF_CastOp to I32. This function is used for CastOps that are
    // intermediate nodes in a TableGen pattern result. In such a case, the
    // destination type is not inferred and must be given explicitly.
    //
    // Preconditions: The given value must have a ShapedType.
    static Value CreateTFCastOpI32(OpBuilder *builder, Location loc, Value x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "bar"},
    	}
    
    	selectedPod := func(pod *example.Pod) *example.Pod {
    		result := pod.DeepCopy()
    		result.Labels = map[string]string{"select": "true"}
    		return result
    	}
    
    	tests := []struct {
    		name       string
    		namespace  string
    		key        string
    		pred       storage.SelectionPredicate
    		watchTests []*testWatchStruct
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			if err := decoder.Decode(parsed); err != nil {
    				if errors.Is(err, io.EOF) {
    					break
    				}
    				return err
    			}
    
    			result = append(result, parsed)
    		}
    
    		return nil
    	})
    	if err != nil {
    		panic(err)
    	}
    	return result
    }
    
    func BenchmarkRatcheting(b *testing.B) {
    	// Walk directory with CRDs, for each file parse YAML with multiple CRDs in it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

        }
        return zeroToTwentyNine;
      }
    
      private static <E> Set<Set<E>> toHashSets(Set<Set<E>> powerSet) {
        Set<Set<E>> result = newHashSet();
        for (Set<E> subset : powerSet) {
          result.add(new HashSet<E>(subset));
        }
        return result;
      }
    
      private static Object objectWithHashCode(final int hashCode) {
        return new Object() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. src/reflect/type.go

    					if count[t] > 1 || ok {
    						// Name appeared multiple times at this level: annihilate.
    						return StructField{}, false
    					}
    					result = t.Field(i)
    					result.Index = nil
    					result.Index = append(result.Index, scan.index...)
    					result.Index = append(result.Index, i)
    					ok = true
    					continue
    				}
    
    				// Queue embedded struct fields for processing with next level,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top