Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for targeting (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/wasm/wasmobj.go

    		} else {
    			p.To = obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: morestackNoCtxt}
    		}
    		p = appendp(p, AEnd)
    	}
    
    	// record the branches targeting the entry loop and the unwind exit,
    	// their targets with be filled in later
    	var entryPointLoopBranches []*obj.Prog
    	var unwindExitBranches []*obj.Prog
    	currentDepth := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		// API installation happens before we start listening on the handlers,
    		// therefore it is safe to register ResourceInfos here. The handler will block
    		// write requests until the storage versions of the targeting resources are updated.
    		s.StorageVersionManager.AddResourceInfo(resourceInfos...)
    	}
    
    	return nil
    }
    
    // InstallLegacyAPIGroup exposes the given legacy api group in the API.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    One example *all* pom-based libraries already have are the _runtime_ and _compile_ variants, where Gradle can choose only one depending on the task at hand.
    Another of such alternatives discovered often in the Java ecosystems are jars targeting different Java versions.
    
    As example, we look at version 0.7.9 of the asynchronous programming library Quasar published on link:https://repo1.maven.org/maven2/co/paralleluniverse/quasar-core/0.7.9[Maven central].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/rangefunc/rewrite.go

    					return true
    				})
    				if #state3 == abi.RF_PANIC {
    					panic(runtime.panicrangestate(abi.RF_MISSING_PANIC))
    				}
    				#state3 = abi.RF_EXHAUSTED
    				if #next != 0 {
    					// no breaks or continues targeting this loop
    					#state2 = abi.RF_DONE
    					return false
    				}
    				return true
    			})
    	    	if #state2 == abi.RF_PANIC {
    	       		panic(runtime.panicrangestate(abi.RF_MISSING_PANIC))
    	   		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/arm64/asm.go

    		if ss.Sym != 0 && ss.Size > limit {
    			addLabelSyms(ss.Sym, limit, ss.Size)
    		}
    	}
    }
    
    // offsetLabelName returns the name of the "label" symbol used for a
    // relocation targeting s+off. The label symbols is used on Darwin/Windows
    // when external linking, so that the addend fits in a Mach-O/PE relocation.
    func offsetLabelName(ldr *loader.Loader, s loader.Sym, off int64) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    		p.Write(esc)
    		last = i
    	}
    	p.WriteString(s[last:])
    }
    
    // Escape is like [EscapeText] but omits the error return value.
    // It is provided for backwards compatibility with Go 1.0.
    // Code targeting Go 1.1 or later should use [EscapeText].
    func Escape(w io.Writer, s []byte) {
    	EscapeText(w, s)
    }
    
    var (
    	cdataStart  = []byte("<![CDATA[")
    	cdataEnd    = []byte("]]>")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top