Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for value1b (0.23 sec)

  1. src/reflect/value.go

    func (v Value) CanAddr() bool {
    	return v.flag&flagAddr != 0
    }
    
    // CanSet reports whether the value of v can be changed.
    // A [Value] can be changed only if it is addressable and was not
    // obtained by the use of unexported struct fields.
    // If CanSet returns false, calling [Value.Set] or any type-specific
    // setter (e.g., [Value.SetBool], [Value.SetInt]) will panic.
    func (v Value) CanSet() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

              DeferredCloser closer,
              @ParametricNullness V1 value1,
              @ParametricNullness V2 value2,
              @ParametricNullness V3 value3,
              @ParametricNullness V4 value4,
              @ParametricNullness V5 value5)
              throws Exception;
        }
    
        /**
         * A function that returns a {@link ClosingFuture} when applied to the values of the five
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

              DeferredCloser closer,
              @ParametricNullness V1 value1,
              @ParametricNullness V2 value2,
              @ParametricNullness V3 value3,
              @ParametricNullness V4 value4,
              @ParametricNullness V5 value5)
              throws Exception;
        }
    
        /**
         * A function that returns a {@link ClosingFuture} when applied to the values of the five
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

              values.iterator(),
              keyFunction,
              ImmutableMap.builderWithExpectedSize(((Collection<?>) values).size()));
        }
        return uniqueIndex(values.iterator(), keyFunction);
      }
    
      /**
       * Returns a map with the given {@code values}, indexed by keys derived from those values. In
       * other words, each input value produces an entry in the map whose key is the result of applying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

              values.iterator(),
              keyFunction,
              ImmutableMap.builderWithExpectedSize(((Collection<?>) values).size()));
        }
        return uniqueIndex(values.iterator(), keyFunction);
      }
    
      /**
       * Returns a map with the given {@code values}, indexed by keys derived from those values. In
       * other words, each input value produces an entry in the map whose key is the result of applying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				- key: foo
    				  value: notbaz
    				- key: bar
    				  value: notbaz
    			`),
    			newObj: mustUnstructured(`
    				- key: foo
    				  value: notbaz
    				- key: bar
    				  value: notbaz
    				- key: baz
    				  value: baz
    			`),
    			warnings: []string{
    				`root[0].value: Invalid value: "string": gotta be baz`,
    				`root[1].value: Invalid value: "string": gotta be baz`,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      // It computes the last dim k of slice size of value.user.
      // If value has no use then return 0.
      std::optional<int32_t> ComputeSliceK(Value value) const {
        if (value.use_empty()) return 0;
        auto slice_op =
            llvm::dyn_cast_or_null<TFL::SliceOp>(value.getUses().begin().getUser());
        // We only match for the case where value is used by SliceOp.
        if (!slice_op) return std::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    			continue
    		}
    		types[i] = st
    	}
    	values := make([]any, len(tt))
    	for i := range values {
    		values[i] = reflect.New(types[i]).Interface()
    	}
    	ct := 0
    	for rows.Next() {
    		err = rows.Scan(values...)
    		if err != nil {
    			t.Fatalf("failed to scan values in %v", err)
    		}
    		if ct == 1 {
    			if age := *values[0].(*int32); age != 2 {
    				t.Errorf("Expected 2, got %v", age)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      os << "Details:\n\t" << absl::StrJoin(values, "\n\t");
    
      return os.str();
    }
    
    template <typename T>
    static bool HasValidTFLiteType(Value value, T& error_handler) {
      // None type is allowed to represent unspecified operands.
      if (mlir::isa<NoneType>(value.getType())) return true;
    
      auto type = mlir::dyn_cast<TensorType>(value.getType());
      if (!type) {
        if (auto op = value.getDefiningOp()) {
          error_handler.emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	// handlers with Context.Value to access the server that
    	// started the handler. The associated value will be of
    	// type *Server.
    	ServerContextKey = &contextKey{"http-server"}
    
    	// LocalAddrContextKey is a context key. It can be used in
    	// HTTP handlers with Context.Value to access the local
    	// address the connection arrived on.
    	// The associated value will be of type net.Addr.
    	LocalAddrContextKey = &contextKey{"local-addr"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top