Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 167 for targeting (0.18 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	//   3. mtctr 12 ; foo@R_PPC64_PLTSEQ
    	//   4. bctrl ; foo@R_PPC64_PLTCALL
    	//   5. ld r2,24(r1)
    	//
    	// Note, 5 is required to follow the R_PPC64_PLTCALL. Similarly, relocations targeting
    	// instructions 3 and 4 are zero sized informational relocations.
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLT16_HA),
    		objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLT16_LO_DS):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_ENV_HAS_TR1_TUPLE_ 1
    # endif
    
    // C++11 specifies that <tuple> provides std::tuple. Use that if gtest is used
    // in C++11 mode and libstdc++ isn't very old (binaries targeting Mac OS X 10.6
    // can build with clang but need to use gcc4.2's libstdc++).
    # if GTEST_LANG_CXX11 && (!defined(__GLIBCXX__) || __GLIBCXX__ > 20110325)
    #  define GTEST_ENV_HAS_STD_TUPLE_ 1
    # endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_ENV_HAS_TR1_TUPLE_ 1
    # endif
    
    // C++11 specifies that <tuple> provides std::tuple. Use that if gtest is used
    // in C++11 mode and libstdc++ isn't very old (binaries targeting Mac OS X 10.6
    // can build with clang but need to use gcc4.2's libstdc++).
    # if GTEST_LANG_CXX11 && (!defined(__GLIBCXX__) || __GLIBCXX__ > 20110325)
    #  define GTEST_ENV_HAS_STD_TUPLE_ 1
    # endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

      mtls:
        mode: STRICT
      portLevelMtls:
        8080:
          mode: PERMISSIVE
    				`).ApplyOrFail(t)
    				opt = opt.DeepCopy()
    				// Should pass for all workloads, in or out of mesh, targeting this port
    				src.CallOrFail(t, opt)
    			})
    		})
    	})
    }
    
    func TestAuthorizationL4(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		applyDrainingWorkaround(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        const llvm::SetVector<Operation*>& merged_set,
        func::FuncOp loop_body_func) {
      // Find all of the Ops that are part of the forward/backward pass but aren't
      // targeting the SparseCore. Note that we need to include some non-TPU ops
      // that flow out of the forward pass function. Otherwise, they would get
      // absorbed into the non_tpu function which breaks the pipelining
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. internal/event/rulesmap_test.go

    	testCases := []struct {
    		eventNames     []Name
    		pattern        string
    		targetID       TargetID
    		expectedResult RulesMap
    	}{
    		{[]Name{ObjectAccessedAll}, "", TargetID{"1", "webhook"}, rulesMapCase1},
    		{[]Name{ObjectAccessedAll, ObjectCreatedPut}, "", TargetID{"1", "webhook"}, rulesMapCase2},
    		{[]Name{ObjectRemovedDelete}, "2010*.jpg", TargetID{"1", "webhook"}, rulesMapCase3},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 05 18:43:06 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    		// swallow linker warnings (see https://golang.org/issue/17935).
    		if ctxt.IsDarwin() && ctxt.IsAMD64() {
    			const noPieWarning = "ld: warning: -no_pie is deprecated when targeting new OS versions\n"
    			if i := bytes.Index(out, []byte(noPieWarning)); i >= 0 {
    				// swallow -no_pie deprecation warning, issue 54482
    				out = append(out[:i], out[i+len(noPieWarning):]...)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. internal/event/rules_test.go

    	rulesCase2.Add(NewPattern("2010*", ""), TargetID{"1", "webhook"})
    
    	rulesCase3 := make(Rules)
    	rulesCase3.Add(NewPattern("", "*.jpg"), TargetID{"1", "webhook"})
    
    	testCases := []struct {
    		rules    Rules
    		prefix   string
    		targetID TargetID
    	}{
    		{rulesCase1, "2010*", TargetID{"1", "webhook"}},
    		{rulesCase2, "2000*", TargetID{"2", "amqp"}},
    		{rulesCase3, "2010*", TargetID{"1", "webhook"}},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 8.8K bytes
    - Viewed (0)
Back to top