Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for targeting (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pom.xml

            <configuration>
              <asfExtOptions>
                <charter>The mission of the Apache Maven project is to create and maintain software
                libraries that provide a widely-used project build tool, targeting mainly Java
                development. Apache Maven promotes the use of dependencies via a
                standardized coordinate system, binary plugins, and a standard build
                lifecycle.</charter>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    //
    // We use a version of a linear scan register allocator. We treat the
    // whole function as a single long basic block and run through
    // it using a greedy register allocator. Then all merge edges
    // (those targeting a block with len(Preds)>1) are processed to
    // shuffle data into the place that the target of the edge expects.
    //
    // The greedy allocator moves values into registers just before they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            then:
            def ex = thrown IllegalStateException
            ex.message == "Tried to remove model 'parent.foo' but it is depended on by: 'bar'"
        }
    
        def "cannot bind action targeting type for role #targetRole where type is not available"() {
            when:
            registry.configure(targetRole, ModelReference.of("thing", Bean), Actions.doNothing())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    // use.
    const DisableGatewayPortTranslationLabel = "experimental.istio.io/disable-gateway-port-translation"
    
    // MergeGateways combines multiple gateways targeting the same workload into a single logical Gateway.
    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.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
    - 39.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            if (!role.isSubjectViewAvailable() && !subjectReference.isUntyped()) {
                throw new IllegalStateException(String.format("Cannot bind subject '%s' to role '%s' because it is targeting a type and subject types are not yet available in that role", subjectReference, role));
            }
            return new BindingPredicate(subjectReference.atState(role.getTargetState()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top