Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 324 for seem (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     CompileAssert<bool(expr)>
    //
    //   instead, these compilers will refuse to compile
    //
    //     GTEST_COMPILE_ASSERT_(5 > 0, some_message);
    //
    //   (They seem to think the ">" in "5 > 0" marks the end of the
    //   template argument list.)
    //
    // - The array size is (bool(expr) ? 1 : -1), instead of simply
    //
    //     ((expr) ? 1 : -1).
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      $vnic_name = "vEthernet (${endpoint_name})"
    
      $hns_endpoint = Get-HnsEndpoint | Where-Object Name -eq $endpoint_name
      # Note: we don't expect to ever enter this block currently - while the HNS
      # network does seem to persist across reboots, the HNS endpoints do not.
      if ($hns_endpoint) {
        if ($REDO_STEPS) {
          Log-Output ("Warning: HNS endpoint $endpoint_name already exists, " +
                      "removing it and recreating it")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	return c >= 'a' && c <= 'z'
    }
    
    // simplify replaces template parameters with their expansions, and
    // merges qualifiers.
    func simplify(a AST) AST {
    	seen := make(map[AST]bool)
    	skip := func(a AST) bool {
    		if seen[a] {
    			return true
    		}
    		seen[a] = true
    		return false
    	}
    	if r := a.Copy(simplifyOne, skip); r != nil {
    		return r
    	}
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    func getRandomRange(min, max int, seed int64) int {
    	// special value -1 means no explicit seeding.
    	if seed != -1 {
    		rand.Seed(seed)
    	}
    	return rand.Intn(max-min) + min
    }
    
    // Randomizes the order of bytes in the byte array
    // using Knuth Fisher-Yates shuffle algorithm.
    func randomizeBytes(s []byte, seed int64) []byte {
    	// special value -1 means no explicit seeding.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/sync/atomic/atomic_test.go

    		new := uint32(seed+i)<<16 | uint32(seed+i)<<16>>16
    		old := SwapUint32(addr, new)
    		if old>>16 != old<<16>>16 {
    			panic(fmt.Sprintf("SwapUint32 is not atomic: %v", old))
    		}
    	}
    }
    
    func hammerSwapUint32Method(uaddr *uint32, count int) {
    	addr := (*Uint32)(unsafe.Pointer(uaddr))
    	seed := int(uintptr(unsafe.Pointer(&count)))
    	for i := 0; i < count; i++ {
    		new := uint32(seed+i)<<16 | uint32(seed+i)<<16>>16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            addToContainer(b)
            addToContainer(a)
            addToContainer(c)
    
            expect:
            def seen = []
            def iterator = container.iterator()
            seen << iterator.next()
            seen << iterator.next()
            seen << iterator.next()
            !iterator.hasNext()
            seen == iterationOrder(b, a, c)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    // AX: data
    // BX: hash seed
    // CX: length
    // At return: AX = return value
    TEXT aeshashbody<>(SB),NOSPLIT,$0-0
    	// Fill an SSE register with our seeds.
    	MOVQ	BX, X0				// 64 bits of per-table hash seed
    	PINSRW	$4, CX, X0			// 16 bits of length
    	PSHUFHW $0, X0, X0			// repeat length 4 times total
    	MOVO	X0, X1				// save unscrambled seed
    	PXOR	runtime·aeskeysched(SB), X0	// xor in per-process seed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/testing/testing.go

    //	    }
    //	  })
    //	}
    //
    // A fuzz test maintains a seed corpus, or a set of inputs which are run by
    // default, and can seed input generation. Seed inputs may be registered by
    // calling (*F).Add or by storing files in the directory testdata/fuzz/<Name>
    // (where <Name> is the name of the fuzz test) within the package containing
    // the fuzz test. Seed inputs are optional, but the fuzzing engine may find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = r.Seek(0, 0)
    	if err == nil {
    		t.Fatal("Seek on pipe should fail")
    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    		t.Errorf("Seek returned error %v, want &PathError{Err: syscall.ESPIPE}", err)
    	}
    	_, err = w.Seek(0, 0)
    	if err == nil {
    		t.Fatal("Seek on pipe should fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation.go

    		path := fldPath.Child("uncountedTerminatedPods")
    		seen := sets.New[types.UID]()
    		for i, k := range status.UncountedTerminatedPods.Succeeded {
    			p := path.Child("succeeded").Index(i)
    			if k == "" {
    				allErrs = append(allErrs, field.Invalid(p, k, "must not be empty"))
    			} else if seen.Has(k) {
    				allErrs = append(allErrs, field.Duplicate(p, k))
    			} else {
    				seen.Insert(k)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top