Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for small7 (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // size of a static array:
    //
    //   GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
    //                         content_type_names_incorrect_size);
    //
    // or to make sure a struct is smaller than a certain size:
    //
    //   GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
    //
    // The second argument to the macro is the name of the variable. If
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    		// Second, in the Windows process listing during go test,
    		// the test shows up as test.test.exe, not pkgname.test.exe.
    		// That second one is a drawback, but it seems a small
    		// price to pay for the test running at all.
    		// If maintaining the list of bad words is too onerous,
    		// we could just do this always on Windows.
    		for _, bad := range windowsBadWords {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // streaming; see the GTEST_MESSAGE_ macro below.
      void operator=(const Message& message) const;
    
     private:
      // We put our data in a struct so that the size of the AssertHelper class can
      // be as small as possible.  This is important because gcc is incapable of
      // re-using stack space even for temporary variables, so every EXPECT_EQ
      // reserves stack space for another AssertHelper.
      struct AssertHelperData {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Store {t} ptr val mem) && t.Size() == 2 => (MOVHstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 1 => (MOVBstore ptr val mem)
    
    // Lowering moves
    
    // Load and store for small copies.
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBZload src mem) mem)
    (Move [2] dst src mem) => (MOVHstore dst (MOVHZload src mem) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    	buffers := bpool.NewBytePoolCap(n, blockSizeV2, blockSizeV2*2)
    	if n >= 16384 {
    		// pre-populate buffers only n >= 16384 which is (32Gi/2Mi)
    		// for all setups smaller than this avoid pre-alloc.
    		buffers.Populate()
    	}
    	globalBytePoolCap.Store(buffers)
    
    	var localDrives []StorageAPI
    	local := endpointServerPools.FirstLocal()
    	for i, ep := range endpointServerPools {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CreateUser - create new user credentials and policy, if user already exists
    // they shall be rewritten with new inputs.
    func (sys *IAMSys) CreateUser(ctx context.Context, accessKey string, ureq madmin.AddOrUpdateUserReq) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, flags)
    	if err != nil {
    		return
    	}
    	if len > SizeofSockaddrAny {
    		panic("RawSockaddrAny too small")
    	}
    	// TODO(neeilan): Remove 0 in call
    	sa, err = anyToSockaddr(0, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    }
    
    func Ctermid() (tty string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    include::sample[dir="snippets/configurationCache/topLevel/kotlin",files="build.gradle.kts[tags=workaround]"]
    ====
    <1> Define the method inside an object.
    <2> Define the variable in a smaller scope.
    
    See link:{gradle-issues}22879[gradle/gradle#22879].
    
    [[config_cache:not_yet_implemented:build_services_in_fingerprint]]
    === Using build services to invalidate the configuration cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_s390x.s

    #define SEL4  V6 // Overloaded with YDIG,CAR2,ZER
    #define SEL5  V9 // Overloaded with ADD3,SEL2
    #define SEL6  V10 // Overloaded with ADD4,SEL3
    
    /* *
     * To follow the flow of bits, for your own sanity a stiff drink, need you shall.
     * Of a single round, a 'helpful' picture, here is. Meaning, column position has.
     * With you, SIMD be...
     *
     *                                           +--------+--------+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInvalidArgument), r.URL)
    		return
    	}
    	// We do not care if service account is readable or not at this point,
    	// since this is a delete call we shall allow it to be deleted if possible.
    	svcAccount, _, err := globalIAMSys.GetServiceAccount(ctx, serviceAccount)
    	if errors.Is(err, errNoSuchServiceAccount) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top