Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,493 for addOne (0.29 sec)

  1. src/cmd/go/testdata/script/test_buildvcs.txt

    # Adding the -test flag should be strictly additive — it should not suppress the error.
    ! go list -buildvcs=true -test .
    stderr '^go: missing Git command\. See https://golang\.org/s/gogetcmd\nerror obtaining VCS status: .*\n\tUse -buildvcs=false to disable VCS stamping.'
    
    # Adding the suggested flag should suppress the error.
    go list -test -buildvcs=false .
    ! stderr .
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

        @Language("java")
        private static final JAVA_PLUGIN_EXTENSION = """
            package com.example.restricted;
    
            import org.gradle.declarative.dsl.model.annotations.Adding;
            import org.gradle.declarative.dsl.model.annotations.Configuring;
            import org.gradle.declarative.dsl.model.annotations.Restricted;
            import org.gradle.api.Action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintHandler.java

        /**
         * Creates a dependency constraint without adding it to a configuration.
         *
         * @param dependencyConstraintNotation The dependency constraint notation.
         */
        DependencyConstraint create(Object dependencyConstraintNotation);
    
        /**
         * Creates a dependency constraint without adding it to a configuration, and configures the dependency constraint using
         * the given closure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.pprof.node_map

    GO PREPROFILE V1
    example.com/pgo/devirtualize.ExerciseFuncConcrete
    example.com/pgo/devirtualize.AddFn
    48 103
    example.com/pgo/devirtualize.ExerciseFuncField
    example.com/pgo/devirtualize.AddFn
    23 101
    example.com/pgo/devirtualize.ExerciseFuncField
    example.com/pgo/devirtualize/mult%2epkg.MultFn
    23 94
    example.com/pgo/devirtualize.ExerciseFuncClosure
    example.com/pgo/devirtualize/mult%2epkg.MultClosure.func1
    18 93
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. build/dependencies.yaml

      # CoreDNS
      - name: "coredns-kube-up"
        version: 1.11.1
        refPaths:
        - path: cluster/addons/dns/coredns/coredns.yaml.base
          match: registry.k8s.io/coredns
        - path: cluster/addons/dns/coredns/coredns.yaml.in
          match: registry.k8s.io/coredns
        - path: cluster/addons/dns/coredns/coredns.yaml.sed
          match: registry.k8s.io/coredns
    
      - name: "coredns-kubeadm"
        version: 1.11.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15013.go

    // CL 21202 introduced a compiler crash in the handling of a varargs
    // function in the same recursive group as a function that calls it.
    // Nothing in the standard library caught the problem, so adding a test.
    
    package p
    
    func F1(p *int, a ...*int) (int, *int) {
    	if p == nil {
    		return F2(), a[0]
    	}
    	return 0, a[0]
    }
    
    func F2() int {
    	var i0, i1 int
    	a, _ := F1(&i0, &i1)
    	return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 559 bytes
    - Viewed (0)
  7. .github/bot_config.yml

       
         * If you have above configuration and using _**Windows**_ platform -
           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the %PATH% environment variable.
           * Refer [windows setup guide](https://www.tensorflow.org/install/gpu#windows_setup).
         * If you have above configuration and using _**Ubuntu/Linux**_ platform -
           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the $LD_LIBRARY_PATH environment variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

                }
    
                function.annotations.any { it is Adding } -> {
                    check(inType != null)
    
                    check(function.returnType != typeOf<Unit>() || configureLambdas.getTypeConfiguredByLambda(function.parameters.last().type) == null) {
                        "an @Adding function with a Unit return type may not accept configuring lambdas"
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/storage/storageobjectinuseprotection/admission.go

    	if !ok {
    		return nil
    	}
    	for _, f := range pv.Finalizers {
    		if f == volumeutil.PVProtectionFinalizer {
    			// Finalizer is already present, nothing to do
    			return nil
    		}
    	}
    	klog.V(4).Infof("adding PV protection finalizer to %s", pv.Name)
    	pv.Finalizers = append(pv.Finalizers, volumeutil.PVProtectionFinalizer)
    
    	return nil
    }
    
    func (c *storageProtectionPlugin) admitPVC(a admission.Attributes) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 02 21:13:50 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue15926.go

    // build
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15926: linker was adding .def to the end of symbols, causing
    // a name collision with a method actually named def.
    
    package main
    
    type S struct{}
    
    func (s S) def() {}
    
    var I = S.def
    
    func main() {
        I(S{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 03 16:56:29 UTC 2016
    - 389 bytes
    - Viewed (0)
Back to top