Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 147 for Avery (0.05 sec)

  1. cmd/object-api-listobjects_test.go

    		// Setting maxKeys to negative value (15-16).
    		{"empty-bucket", "", "", "", -1, ListObjectsInfo{}, nil, true},
    		{"empty-bucket", "", "", "", 1, ListObjectsInfo{}, nil, true},
    		// Setting maxKeys to a very large value (17).
    		{"empty-bucket", "", "", "", 111100000, ListObjectsInfo{}, nil, true},
    		// Testing for all 10 objects in the bucket (18).
    		{"test-bucket-list-object", "", "", "", 10, resultCases[0], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    //
    //go:nosplit
    func (span *mspan) objBase(addr uintptr) uintptr {
    	return span.base() + span.objIndex(addr)*span.elemsize
    }
    
    // bulkBarrierPreWrite executes a write barrier
    // for every pointer slot in the memory range [src, src+size),
    // using pointer/scalar information from [dst, dst+size).
    // This executes the write barriers necessary before a memmove.
    // src, dst, and size must be pointer-aligned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    )
    
    // runTest runs a given function against every src/dst pair
    func runTest(t *testing.T, f func(t framework.TestContext, src echo.Instance, dst echo.Instance, opt echo.CallOptions)) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		runTestContext(t, f)
    	})
    }
    
    // runTestToServiceWaypoint runs a given function against every src/dst pair where a call will traverse a service waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// An object that describes the pod that will be created.
    	// The DaemonSet will create exactly one copy of this pod on every node
    	// that matches the template's node selector (or on every node if no node
    	// selector is specified).
    	// The only allowed template.spec.restartPolicy value is "Always".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    				} else {
    					stopFn(oi, nil)
    				}
    				ri.trackCurrentBucketObject(r.Target.Bucket, oi, success, attempts)
    				globalBatchJobsMetrics.save(job.ID, ri)
    				// persist in-memory state to disk after every 10secs.
    				batchLogIf(ctx, ri.updateAfter(ctx, api, 10*time.Second, job))
    
    				if wait := globalBatchConfig.ReplicationWait(); wait > 0 {
    					time.Sleep(wait)
    				}
    			}()
    		}
    		wk.Wait()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// An object that describes the pod that will be created.
    	// The DaemonSet will create exactly one copy of this pod on every node
    	// that matches the template's node selector (or on every node if no node
    	// selector is specified).
    	// The only allowed template.spec.restartPolicy value is "Always".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    C, C+\+, Objective-C, and Objective-C++ builds.
    
    To configure a precompiled header, first a header file needs to be defined that includes all of the headers that should be precompiled. It must be specified as the first included header in every source file where the precompiled header should be used. It is assumed that this header file, and any headers it contains, make use of header guards so that they can be included in an idempotent manner. If header guards are not used in a header file,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    		// blocked on a syscall for the entire generation. This case must
    		// not have a P; the runtime makes sure that all Ps are traced at
    		// the beginning of a generation, which involves taking a P back
    		// from every thread.
    		ms, ok := o.mStates[mid]
    		if ok {
    			// This M has been seen. That means we must have seen this
    			// goroutine go into a syscall on this thread at some point.
    			if ms.g != gid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    )
    
    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    // reseed - returns a new seed every time the function is called.
    func reseed() uint32 {
    	return uint32(time.Now().UnixNano() + int64(os.Getpid()))
    }
    
    // nextSuffix - provides a new unique suffix every time the function is called.
    func nextSuffix() string {
    	randmu.Lock()
    	r := randN
    	// Initial seed required, generate one.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    // This flag specifies the maximum number of stack frames to be
    // printed in a failure message.
    GTEST_DECLARE_int32_(stack_trace_depth);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top