Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for S1 (0.07 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            expect:
            def s1 = updateDir(single, dir2)
            assertDirectorySnapshot(s1, dir1)
            assertDirectorySnapshot(s1, child)
            assertDirectorySnapshot(s1, dir2)
            assertHasNoMetadata(s1, dir3)
            assertHasNoMetadata(s1, tooFew)
            assertHasNoMetadata(s1, tooMany)
            assertPartialDirectoryNode(s1, parent)
            flatten(s1) == [parent.path, "1:dir1", "2:child1", "1:dir2"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_amd64.s

    	;                                     \
    	XORL     y1, y0;                      \ // y0 = (e>>25) ^ (e>>11)					// S1
    	XORL     g, y2;                       \ // y2 = f^g	// CH
    	VPADDD   XDWORD0, XTMP0, XTMP0;       \ // XTMP0 = W[-7] + W[-16]	// y1 = (e >> 6)	// S1
    	RORXL    $6, e, y1;                   \ // y1 = (e >> 6)						// S1
    	;                                     \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadmacho/ldmacho.go

    			// assign sizes, now that we know symbols in sorted order.
    			for s1 := bld.Sub(); s1 != 0; s1 = l.SubSym(s1) {
    				s1Bld := l.MakeSymbolUpdater(s1)
    				if sub := l.SubSym(s1); sub != 0 {
    					s1Bld.SetSize(l.SymValue(sub) - l.SymValue(s1))
    				} else {
    					dlen := int64(len(l.Data(s)))
    					s1Bld.SetSize(l.SymValue(s) + dlen - l.SymValue(s1))
    				}
    			}
    		}
    
    		if bld.Type() == sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. src/runtime/runtime_test.go

    	v := *(*byte)(unsafe.Pointer(addr))
    	t.Logf("addr %#x: %#x\n", addr, v)
    }
    
    func eqstring_generic(s1, s2 string) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	// optimization in assembly versions:
    	// if s1.str == s2.str { return true }
    	for i := 0; i < len(s1); i++ {
    		if s1[i] != s2[i] {
    			return false
    		}
    	}
    	return true
    }
    
    func TestEqString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/math/rand/rand_test.go

    // disagree, or <0 if the lengths are the same and all elements
    // are identical.
    func compareUint32Slices(s1, s2 []uint32) int {
    	if len(s1) != len(s2) {
    		if len(s1) > len(s2) {
    			return len(s2) + 1
    		}
    		return len(s1) + 1
    	}
    	for i := range s1 {
    		if s1[i] != s2[i] {
    			return i
    		}
    	}
    	return -1
    }
    
    // compareFloat32Slices returns the first index where the two slices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/abiutils_test.go

    }
    
    func TestABIUtilsMethod(t *testing.T) {
    	// type s1 struct { f1 int16; f2 int16; f3 int16 }
    	// func(p1 *s1, p2 [7]*s1, p3 float64, p4 int16, p5 int16, p6 int16)
    	//   (r1 [7]*s1, r2 float64, r3 int64)
    	i16 := types.Types[types.TINT16]
    	i64 := types.Types[types.TINT64]
    	f64 := types.Types[types.TFLOAT64]
    	s1 := mkstruct(i16, i16, i16)
    	ps1 := types.NewPtr(s1)
    	a7 := types.NewArray(ps1, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. pkg/slices/slices_test.go

    			},
    			want: []*string{},
    		},
    		{
    			name: "slice with 1 element",
    			args: args[string]{
    				[]string{s1},
    			},
    			want: []*string{&s1},
    		},
    		{
    			name: "slice with many elements",
    			args: args[string]{
    				[]string{s1, s2, s3},
    			},
    			want: []*string{&s1, &s2, &s3},
    		},
    	}
    	intTests := []testCase[int]{
    		{
    			name: "empty slice",
    			args: args[int]{
    				[]int{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/encoding/json/encode_test.go

    		CaseName: Name("DominantField"),
    		// Both S1 and S2 have a field named X, but since S has an X field as
    		// well, it takes precedence over S1.X and S2.X.
    		makeInput: func() any {
    			type (
    				S1 struct{ x, X int }
    				S2 struct{ x, X int }
    				S  struct {
    					S1
    					S2
    					x, X int
    				}
    			)
    			return S{S1{1, 2}, S2{3, 4}, 5, 6}
    		},
    		want: `{"X":6}`,
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. pkg/kube/multicluster/secretcontroller_test.go

    	c := buildTestController(t, false)
    	c.AddSecret("s0", "c0")
    	c.AddSecret("s1", "c1")
    	c.Run(stop)
    
    	// before sync
    	assert.EventuallyEqual(t, c.controller.ListRemoteClusters, []cluster.DebugInfo{
    		{ID: "config", SyncStatus: "syncing"},
    		{ID: "c0", SecretName: "istio-system/s0", SyncStatus: "syncing"},
    		{ID: "c1", SecretName: "istio-system/s1", SyncStatus: "syncing"},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/typeparams.go

            var s0 []int
            for range s0 {}
            for _ = range s0 {}
            for _, _ = range s0 {}
    
            var s1 S1
            for range s1 {}
            for _ = range s1 {}
            for _, _ = range s1 {}
    
            var s2 S2
            for range s2 /* ERRORx `cannot range over s2.*no core type` */ {}
    
            var a0 []int
            for range a0 {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:56:58 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top