Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 292 for nuts (0.06 sec)

  1. src/runtime/align_runtime_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file lives in the runtime package
    // so we can get access to the runtime guts.
    // The rest of the implementation of this test is in align_test.go.
    
    package runtime
    
    import "unsafe"
    
    // AtomicFields is the set of fields on which we perform 64-bit atomic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/os/exec/env_test.go

    			// (Maybe filter them out or error out on them at some point.)
    			in:   []string{"dodgy", "entries"},
    			want: []string{"dodgy", "entries"},
    		},
    		{
    			// Filter out entries containing NULs.
    			in:      []string{"A=a\x00b", "B=b", "C\x00C=c"},
    			want:    []string{"B=b"},
    			wantErr: true,
    		},
    		{
    			// Plan 9 needs to preserve environment variables with NUL (#56544).
    			nulOK: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 01:23:16 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/runtime/proc_runtime_test.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Proc unit tests. In runtime package so can use runtime guts.
    
    package runtime
    
    func RunStealOrderTest() {
    	var ord randomOrder
    	for procs := 1; procs <= 64; procs++ {
    		ord.reset(uint32(procs))
    		if procs >= 3 && len(ord.coprimes) < 2 {
    			panic("too few coprimes")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/strconv/atof_test.go

    func testAtof(t *testing.T, opt bool) {
    	initAtof()
    	oldopt := SetOptimize(opt)
    	for i := 0; i < len(atoftests); i++ {
    		test := &atoftests[i]
    		out, err := ParseFloat(test.in, 64)
    		outs := FormatFloat(out, 'g', -1, 64)
    		if outs != test.out || !reflect.DeepEqual(err, test.err) {
    			t.Errorf("ParseFloat(%v, 64) = %v, %v want %v, %v",
    				test.in, out, err, test.out, test.err)
    		}
    
    		if float64(float32(out)) == out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/configmap.go

    	b.ensureObjectMetaApplyConfigurationExists()
    	b.DeletionGracePeriodSeconds = &value
    	return b
    }
    
    // WithLabels puts the entries into the Labels field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  6. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hasher.java

         * Feed a string into the hasher.
         */
        void putString(CharSequence value);
    
        /**
         * Feed a hash code into the hasher.
         */
        void putHash(HashCode hashCode);
    
        /**
         * Puts a hashable value into the hasher.
         */
        void put(Hashable hashable);
    
        /**
         * Feed a {@code null} value into the hasher.
         */
        void putNull();
    
        /**
         * Returns the combined hash.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 11:14:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/registry/rbac/clusterrolebinding/registry.go

    type Registry interface {
    	ListClusterRoleBindings(ctx context.Context, options *metainternalversion.ListOptions) (*rbacv1.ClusterRoleBindingList, error)
    }
    
    // storage puts strong typing around storage calls
    type storage struct {
    	rest.Lister
    }
    
    // NewRegistry returns a new Registry interface for the given Storage. Any mismatched
    // types will panic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  8. test/bounds.go

    	use(a1k[i8&^-128]) // ERROR "index bounds check elided"
    	use(a1k[ui8&^1])   // ERROR "index bounds check elided"
    	use(a1k[ui16&^0xf000])
    	use(a1k[ui16&^0xff00]) // ERROR "index bounds check elided"
    
    	// Right shift cuts the effective number of bits in the index,
    	// but only for unsigned (signed stays negative).
    	use(s[i32>>22])
    	use(a1[i32>>22])
    	use(a1k[i32>>22])
    	use(a100k[i32>>22])
    	use(p1[i32>>22])
    	use(p1k[i32>>22])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

        out_fuzz_files = [op_name + "_fuzz.cc" for op_name in op_names]
        native.genrule(
            name = name + "_genrule",
            outs = out_fuzz_files,
            srcs = api_def_srcs,
            tools = [":op_fuzz_gen_tool"],
            cmd = ("$(location :op_fuzz_gen_tool) " +
                   " $$(dirname $(location " + out_fuzz_files[0] + "))" +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. internal/store/queuestore.go

    		}
    	}
    
    	return nil
    }
    
    // Delete - Remove the store directory from disk
    func (store *QueueStore[_]) Delete() error {
    	return os.Remove(store.directory)
    }
    
    // PutMultiple - puts an item to the store.
    func (store *QueueStore[I]) PutMultiple(item []I) error {
    	store.Lock()
    	defer store.Unlock()
    	if uint64(len(store.entries)) >= store.entryLimit {
    		return errLimitExceeded
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top