Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 490 for Off (0.04 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) fail(err string) {
    	panic(demangleErr{err: err, off: st.off})
    }
    
    // failEarlier is like fail, but decrements the offset to indicate
    // that the point of failure occurred earlier in the string.
    func (st *state) failEarlier(err string, dec int) {
    	if st.off < dec {
    		panic("internal error")
    	}
    	panic(demangleErr{err: err, off: st.off - dec})
    }
    
    // advance advances the current string offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		throw("found bad interior pointer")
    	}
    	off := interior - x
    	tp := span.typePointersOf(interior, size)
    	for i := off; i < off+size; i += goarch.PtrSize {
    		// Compute the pointer bit we want at offset i.
    		want := false
    		if i < span.elemsize {
    			off := i % typ.Size_
    			if off < typ.PtrBytes {
    				j := off / goarch.PtrSize
    				want = *addb(typ.GCData, j/8)>>(j%8)&1 != 0
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. buildscripts/disable-root.sh

    ./mc admin user add sitea foobar foo12345
    
    ./mc admin policy attach sitea/ consoleAdmin --user=foobar
    
    ./mc admin user info siteb foobar
    
    killall -9 minio
    
    echo "turning off root access, however site replication must continue"
    export MINIO_API_ROOT_ACCESS=off
    
    minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	return true
    }
    
    // isFixed32 returns true if the int32 at offset off in symbol sym
    // is known and constant.
    func isFixed32(c *Config, sym Sym, off int64) bool {
    	return isFixed(c, sym, off, 4)
    }
    
    // isFixed returns true if the range [off,off+size] of the symbol sym
    // is known and constant.
    func isFixed(c *Config, sym Sym, off, size int64) bool {
    	lsym := sym.(*obj.LSym)
    	if lsym.Extra == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. pkg/kubelet/userns/userns_manager_switch_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, pkgfeatures.UserNamespacesSupport, false)
    	m2, err := MakeUserNsManager(testUserNsPodsManager)
    	require.NoError(t, err)
    
    	// The feature gate is off, no pods should be allocated.
    	for _, pod := range pods {
    		ok := m2.podAllocated(pod)
    		assert.False(t, ok, "pod %q should not be allocated", pod)
    	}
    }
    
    func TestGetOrCreateUserNamespaceMappingsSwitch(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager.go

    	}
    	off := int(kubeletMappingID / userNsLength)
    	len := int(kubeletMappingLen / userNsLength)
    
    	m := UsernsManager{
    		used:   allocator.NewAllocationMap(len, "user namespaces"),
    		usedBy: make(map[types.UID]uint32),
    		kl:     kl,
    		off:    off,
    		len:    len,
    	}
    
    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. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

            buildFile << '''
    task echo {
        doLast {
            def reader = new BufferedReader(new InputStreamReader(System.in))
            while (true) {
                def line = reader.readLine() // readline will chomp the newline off the end
                if (!line) {
                    break
                }
                print "[$line]"
            }
        }
    }
    '''
            executer.withStdinPipe(new PipedOutputStream() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    func (d *decoder) intAt(off int) int {
    	if off < 0 || len(d.data)-off < 4 {
    		panic(errCorrupt)
    	}
    	i := binary.LittleEndian.Uint32(d.data[off : off+4])
    	if int32(i)>>31 != 0 {
    		panic(errCorrupt)
    	}
    	return int(i)
    }
    
    // boolAt returns the bool at the given offset in d.data.
    func (d *decoder) boolAt(off int) bool {
    	return d.intAt(off) != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// result: (MOVBstore [off] {sym} ptr x mem)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		if v_1.Op != OpARM64MOVWreg {
    			break
    		}
    		x := v_1.Args[0]
    		mem := v_2
    		v.reset(OpARM64MOVBstore)
    		v.AuxInt = int32ToAuxInt(off)
    		v.Aux = symToAux(sym)
    		v.AddArg3(ptr, x, mem)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  10. src/go/types/testdata/manual.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is tested when running "go test -run Manual"
    // without source arguments. Use for one-off debugging.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 17:42:47 UTC 2024
    - 285 bytes
    - Viewed (0)
Back to top