Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for Mystring (0.68 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

         *
         * @see ArtifactCoordinateFactory#create(Session, String, String, String, String, String, String)
         */
        @Override
        public ArtifactCoordinate createArtifactCoordinate(
                String groupId, String artifactId, String version, String classifier, String extension, String type) {
            return getService(ArtifactCoordinateFactory.class)
                    .create(this, groupId, artifactId, version, classifier, extension, type);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "SetProperty<String>"         | "objects.setProperty(String)"         | "null"               | "null"
            "MapProperty<String, String>" | "objects.mapProperty(String, String)" | "[:]"                | [:]
            "MapProperty<String, String>" | "objects.mapProperty(String, String)" | "['abc': 'def']"     | ['abc': 'def']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                            return CodeFragmentCapturedValue.ContainingClass(receiverClassId, isCrossingInlineBounds = true)
                        }
    
                        return CodeFragmentCapturedValue.ExtensionReceiver(parent.name.asString(), isCrossingInlineBounds = true)
                    }
                }
            }
    
            if (descriptor is IrBasedVariableDescriptor && owner is IrVariable) {
                val name = owner.name
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            writeString(host.service<BuildInvocationScopeId>().id.asString())
        }
    
        private
        fun DefaultReadContext.readBuildInvocationId(): String =
            readString()
    
        private
        fun identifyBuild(state: CachedBuildState) {
            val identityPath = state.identityPath.toString()
    
            eventEmitter.emitNowForCurrent(BuildIdentifiedProgressDetails { identityPath })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. src/time/format.go

    // ParseError describes a problem parsing a time string.
    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    
    // newParseError creates a new ParseError.
    // The provided value and valueElem are cloned to avoid escaping their values.
    func newParseError(layout, value, layoutElem, valueElem, message string) *ParseError {
    	valueCopy := stringslite.Clone(value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	_ = types.NewPtr(types.NewPtr(types.Types[types.TSTRING]))              // **string
    	_ = types.NewPtr(types.NewSlice(types.Types[types.TINTER]))             // *[]interface{}
    	_ = types.NewPtr(types.NewPtr(types.ByteType))                          // **byte
    	_ = types.NewPtr(types.NewSlice(types.ByteType))                        // *[]byte
    	_ = types.NewPtr(types.NewSlice(types.Types[types.TSTRING]))            // *[]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    		}
    
    		// Create the system namespace.
    		var nsLabels map[string]string
    		if i.env.IsMultiNetwork() {
    			nsLabels = map[string]string{label.TopologyNetwork.Name: c.NetworkName()}
    		}
    		var nsAnnotations map[string]string
    		if c.IsRemote() {
    			nsAnnotations = map[string]string{
    				annotation.TopologyControlPlaneClusters.Name: c.Config().Name(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. RELEASE.md

        *   The byte layout for string tensors across the C-API has been updated to
            match TF Core/C++; i.e., a contiguous array of
            `tensorflow::tstring`/`TF_TString`s.
        *   C-API functions `TF_StringDecode`, `TF_StringEncode`, and
            `TF_StringEncodedSize` are no longer relevant and have been removed; see
            `core/platform/ctstring.h` for string access/modification in C.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_ReduceJoinOp : TF_Op<"ReduceJoin", [Pure]> {
      let summary = "Joins a string Tensor across the given dimensions.";
    
      let description = [{
    Computes the string join across dimensions in the given string Tensor of shape
    `[\\(d_0, d_1, ..., d_{n-1}\\)]`.  Returns a new Tensor created by joining the input
    strings with the given separator (default: empty string).  Negative indices are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top