Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cs2 (0.03 sec)

  1. test/typeparam/cons.go

    	var ys List[int] = Map[int, int](incr{-5}, xs)
    	var xz List[bool] = Map[int, bool](pos{}, ys)
    	cs1 := xz.(Cons[bool])
    	cs2 := cs1.Tail.(Cons[bool])
    	_, ok := cs2.Tail.(Nil[bool])
    	if cs1.Head != false || cs2.Head != true || !ok {
    		panic(fmt.Sprintf("got %v, %v, %v, expected false, true, true",
    			cs1.Head, cs2.Head, ok))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 23:41:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

            PotentialConflict conflict
            CapabilityInternal capability = capability()
            ComponentState cs1 = component("g", "m1")
            ComponentState cs2 = component("g", "m2")
    
            def expectedIds = [cs1, cs2].collect { it.id.module }
    
            when:
            conflict = handler.registerCandidate(
                candidate(capability, cs1)
            )
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    			}
    
    			// set values of cs1 instance so they are stored in checkpoint and can be read by cs2
    			cs1.SetDefaultCPUSet(tc.expectedState.defaultCPUSet)
    			cs1.SetCPUAssignments(tc.expectedState.assignments)
    
    			// restore checkpoint with previously stored values
    			cs2, err := NewCheckpointState(testingDir, testingCheckpoint, "none", nil)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	cs1.SetMachineState(expectedState.machineState)
    	cs1.SetMemoryAssignments(expectedState.assignments)
    
    	// restore checkpoint with previously stored values
    	cs2, err := NewCheckpointState(testingDir, testingCheckpoint, "static")
    	assert.NoError(t, err, "could not create testing checkpointState instance")
    
    	assertStateEqual(t, cs2, expectedState)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    //             &&           +     mul
    //           /   |         / \
    //        !=    !=        mul -1
    //       / |   /  |       / |
    //    rem 0.0 cs1 sn1   -  cs2
    //   / |           |   / |
    // $0 cst         rem $0 rem
    // cs1 == sign(cst)
    // cs2 = 1 / cst i.e. the reciprocal
    // Note that named operators like 'sn' and 'sn1' are different values produced by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name: "cs2",
    				},
    				Conditions: []api.ComponentCondition{
    					{
    						Type:    "Healthy",
    						Status:  api.ConditionTrue,
    						Message: "test message",
    						Error:   "test error",
    					},
    				},
    			},
    			// Columns: Name, Status, Message, Error
    			expected: []metav1.TableRow{{Cells: []interface{}{"cs2", "Healthy", "test message", "test error"}}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top