Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 315 for extractID (0.13 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

                SoftwareTypeConventionResolutionResults(it, assignments[it].orEmpty(), additions[it].orEmpty(), nestedObjectAccess[it].orEmpty())
            }
        }
    }
    
    
    /**
     * The convention operations extracted from a resolution result.
     */
    data class SoftwareTypeConventionResolutionResults(
        val softwareTypeName: String,
        val assignments: List<AssignmentRecord>,
        val additions: List<DataAdditionRecord>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

                if (classifier is KClass<*> && add(classifier)) {
                    (classifier.supertypes - Any::class.createType()).forEach(::visit) // No need to visit Any, it only clutters the extracted functions
                }
            }
            add(kClass)
            kClass.supertypes.forEach(::visit)
        }
    }
    
    
    private
    class TypesafeProjectPropertyProducer : PropertyExtractor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def ExtractHeadTailOutsideCompilationPass : Pass<"tf-extract-head-tail-outside-compilation", "ModuleOp"> {
      let summary = "Extracts head or tail outside compilation to separate host launches before/after device cluster.";
    
      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation from the head or tail of a Device cluster.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    	}
    
    	// if not found, for backward compatibility, extract the namespace from
    	// the proxy domain. this is a k8s specific hack and should be enabled
    	parts := strings.Split(proxy.DNSDomain, ".")
    	if len(parts) > 1 { // k8s will have namespace.<domain>
    		return parts[0]
    	}
    
    	return ""
    }
    
    const (
    	serviceNodeSeparator = "~"
    )
    
    // ParsePort extracts port number from a valid proxy address
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. cmd/net.go

    		host = ipAddress
    	}
    	// Strip off IPv6 zone information.
    	if i := strings.Index(host, "%"); i > -1 {
    		host = host[:i]
    	}
    	return net.ParseIP(host) != nil
    }
    
    // extractHostPort - extracts host/port from many address formats
    // such as, ":9000", "localhost:9000", "http://localhost:9000/"
    func extractHostPort(hostAddr string) (string, string, error) {
    	var addr, scheme string
    
    	if hostAddr == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/kube/krt/index.go

    	c Collection[I],
    	extract func(o I) []K,
    ) *Index[I, K] {
    	idx := Index[I, K]{
    		objects: make(map[K]sets.Set[Key[I]]),
    		c:       c,
    		mu:      sync.RWMutex{},
    		extract: extract,
    	}
    	c.Register(func(o Event[I]) {
    		idx.mu.Lock()
    		defer idx.mu.Unlock()
    
    		if o.Old != nil {
    			obj := *o.Old
    			key := GetKey(obj)
    			for _, indexKey := range extract(obj) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                error(unsupportedValueTypeConfig { type('MyTask').property('nestedBean.nestedInput').annotationType(annotation).unsupportedValueType('ResolvedArtifactResult').propertyType('Property<ResolvedArtifactResult>').solution('Extract artifact metadata and annotate with @Input.').solution('Extract...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    
    === Method 3: Extract a custom configuration block
    
    This method is the most flexible, but also the most imperative.
    
    ====
    include::sample[dir="snippets/testing/test-suite-multi-configure-each-extracted/kotlin",files="build.gradle.kts[tags=multi-configure]"]
    include::sample[dir="snippets/testing/test-suite-multi-configure-each-extracted/groovy",files="build.gradle[tags=multi-configure]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.h

    // to be done before average pooling.
    DenseIntElementsAttr GetPadOpAttr(Builder& builder, mhlo::CompositeOp op);
    
    // Given a Composite op that wraps a core.aten.avg_pool2d, and assuming that
    // the padding part is extracted into a tfl.pad op prior to a
    // tfl.average_pool_2d, this function finds the return type of the needed
    // tfl.pad .
    ShapedType GetPadOpType(mhlo::CompositeOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. cmd/s3-zip-handlers.go

    					s3Error = ErrNoSuchKey
    				}
    			}
    		}
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    	// We do not allow offsetting into extracted files.
    	if opts.PartNumber != 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPartNumber), r.URL)
    		return
    	}
    
    	if r.Header.Get(xhttp.Range) != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top