Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,196 for assignOp (0.26 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// IncompatibleAssign occurs when the type of the right-hand side expression
    	// in an assignment cannot be assigned to the type of the variable being
    	// assigned.
    	//
    	// Example:
    	//  var x []int
    	//  var _ int = x
    	IncompatibleAssign
    
    	// UnaddressableFieldAssign occurs when trying to assign to a struct field
    	// in a map value.
    	//
    	// Example:
    	//  func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        public abstract void finalizeOnNextGet();
    
        public abstract void disallowUnsafeRead();
    
        /**
         * Marks this value state as being explicitly assigned. Does not remember the given value in any way.
         *
         * @param value the new explicitly assigned value
         * @return the very <code>value</code> given
         */
        //TODO-RC rename this or the overload as they have significantly different semantics
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pkg/kubelet/qos/policy_test.go

    		},
    	}
    )
    
    type oomTest struct {
    	pod             *v1.Pod
    	memoryCapacity  int64
    	lowOOMScoreAdj  int // The max oom_score_adj score the container should be assigned.
    	highOOMScoreAdj int // The min oom_score_adj score the container should be assigned.
    }
    
    func TestGetContainerOOMScoreAdjust(t *testing.T) {
    	oomTests := []oomTest{
    		{
    			pod:             &cpuLimit,
    			memoryCapacity:  4000000000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 21:34:27 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            // TODO:REUSE Refactor after removing reuse
            // This is horrendously bad.
            // We need to set the platform, _before_ the @Defaults rules of NativeBinaryRules assign the toolchain.
            // We can't just assign the toolchain here because the initializer would be closing over the toolchain which is not reusable, and this breaks model reuse.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/testutil.h

                    std::vector<Tensor>* out);
    
    // Computes the outputs listed in 'tensors', returns the tensors in 'out'.
    // assign_vars are extra outputs that should be run
    // e.g. to assign values to variables.
    void GetTensors(const Scope& scope, const std::vector<Output>& assign_vars,
                    const OutputList& tensors, std::vector<Tensor>* out);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:47:18 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "namespace.ns.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/quantization_passes.h

    // different dialect ops might have different ways to assign the name.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateImportQuantStatsPass(
        OperationToName op_to_name, const std::string& stats_str);
    
    // Creates an instance pass to import quantization stats to the operations in
    // the function. A custom method to get the name from the op is used because
    // different dialect ops might have different ways to assign the name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. test/fixedbugs/bug243.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "errors"
    
    // Issue 481: closures and var declarations
    // with multiple variables assigned from one
    // function call.
    
    func main() {
    	var listen, _ = Listen("tcp", "127.0.0.1:0")
    
    	go func() {
    		for {
    			var conn, _ = listen.Accept()
    			_ = conn
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 893 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

        return this
      }
    
      /** Returns true if a value has been assigned for the setting `id`. */
      fun isSet(id: Int): Boolean {
        val bit = 1 shl id
        return set and bit != 0
      }
    
      /** Returns the value for the setting `id`, or 0 if unset. */
      operator fun get(id: Int): Int = values[id]
    
      /** Returns the number of settings that have values assigned. */
      fun size(): Int = Integer.bitCount(set)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    == Run the application
    
    Thanks to the `application` plugin, you can run the application directly from the command line.
    The `run` task tells Gradle to execute the `main` method in the class assigned to the `mainClass` property.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew run
    
    > Task :${subprojectName.raw}:run
    Hello world!
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top