Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 380 for hard (0.05 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    			}
    		}
    
    		if argProps&ActualExprIsConcreteConvIface != 0 {
    			// FIXME: ideally here it would be nice to make a
    			// distinction between the inlinable case and the
    			// non-inlinable case, but this is hard to do. Example:
    			//
    			//    type I interface { Tiny() int; Giant() }
    			//    type Conc struct { x int }
    			//    func (c *Conc) Tiny() int { return 42 }
    			//    func (c *Conc) Giant() { <huge amounts of code> }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/Utf8Test.java

        assertNotWellFormed(0xF0, 0xA4, 0xAD, 0xC0);
        // Special cases for byte2
        assertNotWellFormed(0xF0, 0x8F, 0xAD, 0xA2);
        assertNotWellFormed(0xF4, 0x90, 0xAD, 0xA2);
      }
    
      /** Tests some hard-coded test cases. */
      public void testSomeSequences() {
        // Empty
        assertWellFormed();
        // One-byte characters, including control characters
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin.go

    	loggingOptions := log.DefaultOptions()
    	loggingOptions.OutputPaths = []string{"stderr"}
    	loggingOptions.JSONEncoding = true
    	if cfg != nil {
    		// Tee all logs to UDS. Stdout will go to kubelet (hard to access, UDS will be read by the CNI DaemonSet and exposed
    		// by normal `kubectl logs`
    		if cfg.LogUDSAddress != "" {
    			loggingOptions.WithTeeToUDS(cfg.LogUDSAddress, constants.UDSLogPath)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    		unsafe.Sizeof(abi.RegArgs{}) > 0 && isReflect {
    		// For reflect.makeFuncStub and reflect.methodValueCall,
    		// we need to fake the stack object record.
    		// These frames contain an internal/abi.RegArgs at a hard-coded offset.
    		// This offset matches the assembly code on amd64 and arm64.
    		objs = methodValueCallFrameObjs[:]
    	} else {
    		p := funcdata(f, abi.FUNCDATA_StackObjects)
    		if p != nil {
    			n := *(*uintptr)(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    	if resourceQuota == nil {
    		return false, fmt.Errorf("expected non-nil quota")
    	}
    	// verify the quota matches on at least one resource
    	matchResource := len(matchFunc(quota.ResourceNames(resourceQuota.Status.Hard))) > 0
    	// by default, no scopes matches all
    	matchScope := true
    	for _, scope := range getScopeSelectorsFromQuota(resourceQuota) {
    		innerMatch, err := scopeFunc(scope, item)
    		if err != nil {
    			return false, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    			testWrite{"hello\n", 6, nil},
    			testClose{nil},
    		},
    	}, {
    		// This file was produced using GNU tar v1.26:
    		//	echo "Slartibartfast" > file.txt
    		//	ln file.txt hard.txt
    		//	tar -b 1 --format=ustar -c -f hardlink.tar file.txt hard.txt
    		file: "testdata/hardlink.tar",
    		tests: []testFnc{
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "file.txt",
    				Size:     15,
    				Mode:     0644,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/fp_test.go

    	floatsToInts(t, -1.0, -1)
    	floatsToInts(t, -128.0, -128)
    
    	floatsToUints(t, 0.0, 0)
    	floatsToUints(t, 1.0, 1)
    	floatsToUints(t, 255.0, 255)
    
    	for j := uint(0); j < 24; j++ {
    		// Avoid hard cases in the construction
    		// of the test inputs.
    		v := int64(1<<62) | int64(1<<(62-j))
    		w := uint64(v)
    		f := float32(v)
    		d := float64(v)
    		expectUint64(t, "2**62...", F32toU64_ssa(f), w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  8. docs/en/data/github_sponsors.yml

      - login: DMantis
        avatarUrl: https://avatars.githubusercontent.com/u/9536869?v=4
        url: https://github.com/DMantis
      - login: hard-coders
        avatarUrl: https://avatars.githubusercontent.com/u/9651103?u=95db33927bbff1ed1c07efddeb97ac2ff33068ed&v=4
        url: https://github.com/hard-coders
      - login: supdann
        avatarUrl: https://avatars.githubusercontent.com/u/9986994?u=9671810f4ae9504c063227fee34fd47567ff6954&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertTrue(result.getFatals().get(2).contains("parent.version"));
        }
    
        @Test
        void testHardCodedSystemPath() throws Exception {
            SimpleProblemCollector result = validateRaw("hard-coded-system-path.xml");
    
            assertViolations(result, 0, 0, 3);
    
            assertContains(
                    result.getWarnings().get(0),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                return;
            }
    
            if (isConstraint) {
                // Need to double check that the target still has hard edges to it
                ModuleResolveState module = targetComponent.getModule();
                if (module.isPending()) {
                    selector.getTargetModule().removeUnattachedDependency(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top