Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for flavor (0.17 sec)

  1. cluster/gce/upgrade.sh

    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
    }
    
    # Read os distro information from /os/release on node.
    # $1: The name of node
    #
    # Assumed vars:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.BuildType</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.Flavor</td>
                </tr>
                <tr>
                    <td>org.gradle.language.assembler.AssemblerSourceSet</td>
                </tr>
                <tr>
                    <td>org.gradle.language.c.CSourceSet</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    If the type-safe task accessor `tasks.jar` isn't available, see the <<#configuring-plugins,configuring plugins>> section above, you can fallback to using the `tasks` container API. The Kotlin flavor of the following sample is strictly equivalent to the one using the type-safe accessor above:
    
    .Using the `tasks` container API
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=rbac.authorization.k8s.io,v1,Role
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    ====
    
    .Installing manually
    [%collapsible]
    ====
    
    **Step 1 - link:{website}/releases[Download] the latest Gradle distribution**
    
    The distribution ZIP file comes in two flavors:
    
    - Binary-only (bin)
    - Complete (all) with docs and sources
    
    We recommend downloading the bin file; it is a smaller file that is quick to download (and the latest documentation is available online).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/internal/reflectlite/value.go

    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            ]
        }
    
        @SuppressWarnings("unused")
        class TypeWithGroovyBooleanProperty {
            @Small
            boolean bool
        }
    
        def "can ignore 'is' getter in favor of 'get' getter"() {
            expect:
            assertProperties TypeWithIgnoredIsGetterBooleanProperty, [
                bool: [(TYPE): Small],
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

                return lenient;
            }
    
            @Override
            public void setLenient(boolean lenient) {
                this.lenient = lenient;
            }
    
            // TODO: Deprecate this in favor of setLenient(Boolean)
            @Override
            public ArtifactView.ViewConfiguration lenient(boolean lenient) {
                this.lenient = lenient;
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/link.go

    	buf.WriteString("![")
    	(*Link)(x).printRemainingMarkdown(buf)
    }
    
    func (x *Image) PrintText(buf *bytes.Buffer) {
    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    // GitHub Flavored Markdown autolinks extension
    // https://github.github.com/gfm/#autolinks-extension-
    
    // autoLinkMore rewrites any extended autolinks in the body
    // and returns the result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top