Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 357 for assignOp (0.27 sec)

  1. src/internal/types/testdata/check/stmt0.go

    	const c = 0
    	type d int
    	a, b, c /* ERROR "cannot assign" */ , d /* ERROR "cannot assign" */  := 1, "zwei", 3.0, 4
    	var _ int = a // a is of type int
    	var _ string = b // b is of type string
    }
    
    func incdecs() {
    	const c = 3.14
    	c /* ERROR "cannot assign" */ ++
    	s := "foo"
    	s /* ERROR "invalid operation" */ --
    	3.14 /* ERROR "cannot assign" */ ++
    	var (
    		x int
    		y float32
    		z complex128
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    						priority = 4
    					}
    					break
    				}
    			}
    		}
    		// priority is calculated using the already assigned priority using failoverPriority.
    		// Since there are at most 5 priorities can be assigned using locality failover(0-4),
    		// we multiply the priority by 5 for maintaining the priorities already assigned.
    		// Afterwards the final priorities can be calculted from 0 (highest) to N (lowest) without skipping.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestClassProcessor.java

         * returned.
         */
        @Override
        void stop();
    
        /**
         * Stops any pending or asynchronous processing immediately
         *
         * Any test class assigned to this processor, but not yet run will not have results in the output.  The processor should
         * not use the result processor provided to {@link #startProcessing(TestResultProcessor)} after this method has
         * returned.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_linux.go

    	}
    	return 0, nil
    }
    
    func waitForPodCIDR(ctx context.Context, client clientset.Interface, nodeName string) (*v1.Node, error) {
    	// since allocators can assign the podCIDR after the node registers, we do a watch here to wait
    	// for podCIDR to be assigned, instead of assuming that the Get() on startup will have it.
    	ctx, cancelFunc := context.WithTimeout(ctx, timeoutForNodePodCIDR)
    	defer cancelFunc()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

    import org.gradle.internal.declarativedsl.analysis.getDataType
    import org.gradle.internal.declarativedsl.language.DataTypeInternal
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.AssignmentResolutionResult.Assigned
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.AssignmentResolutionResult.Unassigned
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.ExpressionResolutionProgress.Ok
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager.go

    		return nil, err
    	}
    
    	if kubeletMappingID%userNsLength != 0 {
    		return nil, fmt.Errorf("kubelet user assigned ID %v is not a multiple of %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingID < userNsLength {
    		// We don't allow to map 0, as security is circumvented.
    		return nil, fmt.Errorf("kubelet user assigned ID %v must be greater or equal to %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingLen%userNsLength != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

              LaunchToDeviceAttributePass> {
     public:
      explicit LaunchToDeviceAttributePass(bool legacy_graph_export) {
        legacy_graph_export_ = legacy_graph_export;
      }
    
      void runOnOperation() override;
    };
    
    // Assign all ops in region with specified device from launch.
    LogicalResult AssignDevicesInRegion(const Dialect* tf_dialect,
                                        tf_device::LaunchOp launch,
                                        Region& region) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

                         org.junit.Assert.assertEquals(1, 1);
                    }
                }
            """
        }
    
        def "build fails if debugger is not ready"() {
            setup:
            // port is assigned but not connected
            def port = jdwpClient.port
    
            when:
            withConnection { connection ->
                connection.newTestLauncher()
                    .withJvmTestClasses("example.MyTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    // New builtin operators, whose operator code is larger than 127, can not be
    // assigned to the `deprecated_builtin_code` field. In such cases, the
    // value of the `builtin_code` field should be used for the builtin operator
    // code. In the case, the maximum value of the two fields will be the value of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

         * mean one can assign `null` to a variable of this type because it may be unknown if this type can accept `null`. For example, a public value
         * of type `T:Any?` can potentially be null. But one can not assign `null` to such a variable because the instantiated type may not be
         * nullable.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top