Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for targeting (0.2 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

        /**
         * The source sets container.
         *
         * @since 7.1
         */
        SourceSetContainer getSourceSets();
    
        /**
         * Tells if automatic JVM targeting is enabled. When disabled, Gradle
         * will not automatically try to get dependencies corresponding to the
         * same (or compatible) level as the target compatibility of this module.
         *
         * @since 7.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		s, base := symname(addr)
    		if s != "" && addr == base {
    			return fmt.Sprintf("%s(SB)", s)
    		}
    		if inst.Op == BL && s != "" && (addr-base) == 8 {
    			// When decoding an object built for PIE, a CALL targeting
    			// a global entry point will be adjusted to the local entry
    			// if any. For now, assume any symname+8 PC is a local call.
    			return fmt.Sprintf("%s+%d(SB)", s, addr-base)
    		}
    		return fmt.Sprintf("%#x", addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    to a banned CUDA dependency when '--define framework_shared_object=false' is set.
    This means that a CUDA target was probably included via an is_static condition,
    used when targeting platforms like Windows where we build statically instead
    of dynamically. Here's the output from bazel query:
    EOF
      cat $BATS_TEST_TMPDIR/out
      [[ ! -s $BATS_TEST_TMPDIR/out ]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. ci/official/utilities/code_check_full.bats

    to a banned CUDA dependency when '--define framework_shared_object=false' is set.
    This means that a CUDA target was probably included via an is_static condition,
    used when targeting platforms like Windows where we build statically instead
    of dynamically. Here's the output from bazel query:
    EOF
      cat $BATS_TEST_TMPDIR/out
      [[ ! -s $BATS_TEST_TMPDIR/out ]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Equivalence.java

     * hash codes in a manner consistent with that equivalence. Two examples of equivalences are the
     * {@linkplain #identity() identity equivalence} and the {@linkplain #equals "equals" equivalence}.
     *
     * <p><b>For users targeting Android API level 24 or higher:</b> This class will eventually
     * implement {@code BiPredicate<T, T>} (as it does in the main Guava artifact), but we currently
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/initconfiguration.go

    	initbytes, err := kubeadmutil.MarshalToYamlForCodecs(cfg, gv, kubeadmscheme.Codecs)
    	if err != nil {
    		return []byte{}, err
    	}
    	allFiles := [][]byte{initbytes}
    
    	// Exception: If the specified groupversion is targeting the internal type, don't print embedded ClusterConfiguration contents
    	// This is mostly used for unit testing. In a real scenario the internal version of the API is never marshalled as-is.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/symbolbuilder.go

    }
    
    // GenAddAddrPlusFunc returns a function to be called when capturing
    // a function symbol's address. In later stages of the link (when
    // address assignment is done) when doing internal linking and
    // targeting an executable, we can just emit the address of a function
    // directly instead of generating a relocation. Clients can call
    // this function (setting 'internalExec' based on build mode and target)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		//
    		// and correct arg i of headerMemPhi and headerCtrPhi
    		//
    		// EXCEPT: join block containing only phi functions is bad
    		// for the register allocator.  Therefore, there is no
    		// join, and branches targeting join must instead target
    		// the header, and the other phi functions within header are
    		// adjusted for the additional input.
    
    		test := f.NewBlock(BlockIf)
    		sched := f.NewBlock(BlockPlain)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    Sometimes we want to add _more variants_ to or modify _existing variants_ of an existing component.
    For example, if you <<cross_project_publications.adoc#targeting-different-platforms, added a variant of a Java library for a different platform>>, you may just want to declare this additional variant on the `java` component itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters_test.go

    			{
    				Network: "network1",
    				Cluster: "cluster1a",
    				Addr:    "1.1.1.1",
    				Port:    80,
    			},
    
    			// network2 has one gateway in each cluster2a and cluster2b. When targeting a particular
    			// endpoint, only the gateway for its cluster will be selected. Since the clusters do not
    			// have the same number of endpoints, the weights for the gateways will be different.
    			{
    				Network: "network2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top