Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,003 for sameId (0.97 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    - its API for Java 8 consumers (named `apiJava8Elements`) with attribute `org.gradle.usage=java-api` and `org.gradle.jvm.version=8`
    - its runtime for Java 8 consumers (named `runtime8Elements`) with attribute `org.gradle.usage=java-runtime` and `org.gradle.jvm.version=8`
    - its API for Java 11 consumers (named `apiJava11Elements`) with attribute `org.gradle.usage=java-api` and `org.gradle.jvm.version=11`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

        runtimeOnly 'org.eclipse.platform:org.eclipse.osgi:3.18.100'
    }
    
    tasks.named("jar") {
        bundle {
            properties.empty() // Make this work with CC per: https://github.com/bndtools/bnd/blob/master/gradle-plugins/README.md#gradle-configuration-cache-support
        }
    }
    
    task run(type: aQute.bnd.gradle.Bndrun) {
        dependsOn tasks.named("jar")
        bndrun = file("${pathToBndrun}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    	rMatch := rp.Match.GetRouteConfiguration()
    	if rMatch == nil {
    		return true
    	}
    
    	match := rMatch.Vhost
    	if match == nil {
    		// match any virtual host in the named route configuration
    		return true
    	}
    	if vh == nil {
    		// route configuration has a specific match for a virtual host but
    		// we do not have a virtual host to match.
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    }
    
    // isImportedConstraint reports whether typ is an imported type constraint.
    func (check *Checker) isImportedConstraint(typ Type) bool {
    	named := asNamed(typ)
    	if named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {
    		return false
    	}
    	u, _ := named.under().(*Interface)
    	return u != nil && !u.IsMethodSet()
    }
    
    func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *TypeName) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/scope.h

    ///
    /// Name examples:
    ///
    ///     Scope root = Scope::NewRootScope();
    ///     Scope linear = root.NewSubScope("linear");
    ///     // W will be named "linear/W"
    ///     auto W = Variable(linear.WithOpName("W"),
    ///                       {2, 2}, DT_FLOAT);
    ///     // b will be named "linear/b_3"
    ///     int idx = 3;
    ///     auto b = Variable(linear.WithOpName("b_", idx),
    ///                       {2}, DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    For example, a script named `code-quality.gradle(.kts)` located in `src/main/groovy` (or `src/main/kotlin`) without a package declaration would be exposed as the `code-quality` plugin:
    
    [source,kotlin]
    ----
    plugins {
        id("code-quality")
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

            //can't use the original test directory, because its name will be used as the project name and
            //it doesn't follow the project naming convention; so will use an explicitly named sub-folder
    
            given:
            createDirs("project", "project/one")
            file("project/settings.gradle") << """
                include 'one'
            """
            file("project/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // include m itself; there is no mention of the named type X that
    // might help us break the cycle.
    // (See comment in go/types.identical, case *Interface, for more.)
    func (h Hasher) shallowHash(t types.Type) uint32 {
    	// t is the type of an interface method (Signature),
    	// its params or results (Tuples), or their immediate
    	// elements (mostly Slice, Pointer, Basic, Named),
    	// so there's no need to optimize anything else.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.yaml

        args:
          - name: annotation
            type: string
    
      - name: "DeploymentConflictingPorts"
        code: IST0137
        level: Warning
        description: "Two services selecting the same workload with the same targetPort MUST refer to the same port."
        template: "This deployment %s is associated with multiple services %v using targetPort %q but different ports: %v."
        args:
          - name: deployment
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ProfileActivationFilePathInterpolator.java

     * under the License.
     */
    package org.apache.maven.internal.impl.model;
    
    import java.nio.file.Path;
    
    import org.apache.maven.api.di.Inject;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.model.ActivationFile;
    import org.apache.maven.api.services.model.PathTranslator;
    import org.apache.maven.api.services.model.ProfileActivationContext;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top