Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for preferGo (0.24 sec)

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

    };
    
    // Then, use the TEST_P macro to define as many parameterized tests
    // for this fixture as you want. The _P suffix is for "parameterized"
    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    				// queryImport. The existing error indicates only that we couldn't find
    				// the package, whereas the query error also explains why we didn't fix
    				// the problem — so we prefer the latter.
    				pkg.err = err
    			}
    
    			// err is nil, but we intentionally leave pkg.err non-nil and pkg.mod
    			// unset: we still haven't satisfied other invariants of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    * NamedDomainObjectProvider<Configuration>.singleFile
    * NamedDomainObjectProvider<Configuration>.state
    * NamedDomainObjectProvider<Configuration>.withDependencies
    
    You should prefer to directly reference the methods from `Configuration`.
    
    === Potential breaking changes
    
    ==== `JavaForkOptions` `getJvmArgs()` and `getAllJvmArgs()` return immutable lists
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    };
    
    // Then, use the TEST_P macro to define as many parameterized tests
    // for this fixture as you want. The _P suffix is for "parameterized"
    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	}
    
    	if *flagInterpreter != "" {
    		// Many linkers support both -I and the --dynamic-linker flags
    		// to set the ELF interpreter, but lld only supports
    		// --dynamic-linker so prefer that (ld on very old Solaris only
    		// supports -I but that seems less important).
    		argv = append(argv, fmt.Sprintf("-Wl,--dynamic-linker,%s", *flagInterpreter))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    				info.WasIdle = true
    				info.IdleTime = time.Since(r.idleAt)
    			}
    			trace.GotConn(info)
    		}
    		if r.err != nil {
    			// If the request has been canceled, that's probably
    			// what caused r.err; if so, prefer to return the
    			// cancellation error (see golang.org/issue/16049).
    			select {
    			case <-treq.ctx.Done():
    				err := context.Cause(treq.ctx)
    				if err == errRequestCanceled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (CMN x (SRAconst [c] y)) => (CMNshiftRA x y [c])
    (CMN x (SLL y z)) => (CMNshiftLLreg x y z)
    (CMN x (SRL y z)) => (CMNshiftRLreg x y z)
    (CMN x (SRA y z)) => (CMNshiftRAreg x y z)
    
    // prefer *const ops to *shift ops
    (ADDshiftLL (MOVWconst [c]) x [d]) => (ADDconst [c] (SLLconst <x.Type> x [d]))
    (ADDshiftRL (MOVWconst [c]) x [d]) => (ADDconst [c] (SRLconst <x.Type> x [d]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top