Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for thinsp (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

                    doFirst("A first step") {}
                    doLast("One last thing...") {}
                }
            """
    
            when:
            runCustomTask()
    
            then:
            def task = events.operation("Task :custom")
            task.descendant('Execute A first step for :custom')
            task.descendant('Execute One last thing... for :custom')
        }
    
        @TargetGradleVersion(">=4.10.3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            transformer.addAction(new Action<XmlProvider>() {
                void execute(XmlProvider xml) {
                    xml.asNode().thing[0].@foo = "bar"
                }
            })
            transformer.transform(writer, generator)
    
            then:
            looksLike('<things>\n  <thing foo="bar"/>\n</things>', writer.toString())
        }
    
        private void looksLike(String expected, String actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/generateLotsOfDeprecationWarnings/build.gradle

            nagUserOfDeprecated("Some repetitive Deprecation")
        }
    }
    
    
    @groovy.transform.CompileStatic
    void nagUserOfDeprecated(String thing) {
        org.gradle.internal.deprecation.DeprecationLogger.deprecate(thing).willBecomeAnErrorInGradle9().undocumented().nagUser();
    
    }
    
    // This generates 1 deprecation 10k times and 1k unique deprecations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructuredscheme/scheme.go

    }
    
    // NewUnstructuredObjectTyper returns an object typer that can deal with unstructured things
    func NewUnstructuredObjectTyper() runtime.ObjectTyper {
    	return unstructuredObjectTyper{}
    }
    
    func (t unstructuredObjectTyper) ObjectKinds(obj runtime.Object) ([]schema.GroupVersionKind, bool, error) {
    	// Delegate for things other than Unstructured.
    	if _, ok := obj.(runtime.Unstructured); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 27 12:37:23 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Defines tools that can build things that run on the JVM.
     */
    @NonNullApi
    package org.gradle.jvm.toolchain;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 766 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/tools.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This package imports things required by build scripts, to force `go mod` to see them as dependencies
    package tools
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 757 bytes
    - Viewed (0)
  7. manifests/profiles/default.yaml

        - name: istio-ingressgateway
          enabled: true
        egressGateways:
        - name: istio-egressgateway
          enabled: false
    
      # Most default values come from the helm chart's values.yaml
      # Below are the things that differ
      values:
        defaultRevision: ""
        global:
          istioNamespace: istio-system
          configValidation: true
        gateways:
          istio-ingressgateway: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 744 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    // TODO(user): when things stabilize, flesh this out
    /**
     * Hash functions and related structures.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/HashingExplained">hashing</a>.
     */
    @CheckReturnValue
    @ParametersAreNonnullByDefault
    package com.google.common.hash;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1021 bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    // TODO(user): when things stabilize, flesh this out
    /**
     * Hash functions and related structures.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/HashingExplained">hashing</a>.
     */
    @CheckReturnValue
    @ParametersAreNonnullByDefault
    package com.google.common.hash;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1021 bytes
    - Viewed (0)
  10. cmd/cloud-controller-manager/README.md

    ## Things you should NOT do
    
    1. Vendor in `k8s.io/cmd/cloud-controller-manager`.
    2. Directly modify anything under `k8s.io/cmd/cloud-controller-manager` in this repo. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 01 18:22:09 UTC 2021
    - 707 bytes
    - Viewed (0)
Back to top