Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for uniqify (0.27 sec)

  1. common/scripts/kind_provisioner.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -e
    set -x
    
    # The purpose of this file is to unify prow/lib.sh in both istio and istio.io
    # repos to avoid code duplication.
    
    ####################################################################
    #################   COMMON SECTION   ###############################
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. pkg/volume/util/atomic_writer.go

    // 2. contain '..' as an element
    // 3. start with '..'
    // 4. contain filenames larger than 255 characters
    // 5. be longer than 4096 characters
    func validatePath(targetPath string) error {
    	// TODO: somehow unify this with the similar api validation,
    	// validateVolumeSourcePath; the error semantics are just different enough
    	// from this that it was time-prohibitive trying to find the right
    	// refactoring to re-use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    Unification first compares the top-level structure of the LHS and RHS
    types.
    Both are arrays of the same length; they unify if the element types unify.
    Both element types are structs; they unify if they have
    the same number of fields with the same names and if the
    field types unify.
    The type argument for <code>P</code> is not known yet (there is no map entry),
    so unifying <code>P</code> with <code>string</code> adds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

         * from the project services directly to use it.<br/><br/>
         *
         * TODO: Remove this and just inject execution engine once we unify execution engines in https://github.com/gradle/gradle/issues/27249
         */
        private ExecutionEngine getExecutionEngine(Object target) {
            if (target instanceof ProjectInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/go/types/generate_test.go

    	"typeparam.go":     nil,
    	"typeterm_test.go": nil,
    	"typeterm.go":      nil,
    	"typestring.go":    nil,
    	"under.go":         nil,
    	"unify.go":         fixSprintf,
    	"universe.go":      fixGlobalTypVarDecl,
    	"util_test.go":     fixTokenPos,
    	"validtype.go":     func(f *ast.File) { fixTokenPos(f); renameSelectors(f, "Trace->_Trace") },
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                        String propertyName,
                        PropertyValue value,
                        boolean optional
                    ) {
                        try {
                            // TODO Unify this with AbstractValidatingProperty.validate();
                            //   we are doing a slightly different version of the same code here,
                            //   see https://github.com/gradle/gradle/issues/10846
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	if err != nil {
    		return 0, err
    	}
    	// currentStorageRV is taken from resp.Header.Revision (int64)
    	// and cast to uint64, so it is safe to do reverse
    	// at some point we should unify the interface but that
    	// would require changing  Versioner.UpdateList
    	return int64(currentStorageRV), nil
    }
    
    // isInitialEventsEndBookmarkRequired since there is no way to directly set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    		fmt.Fprintf(os.Stderr, "=-= mapvar is %v\n", nm)
    		fmt.Fprintf(os.Stderr, "=-= newfunc is %+v\n", fn)
    	}
    
    	recordFuncForVar(nm, fn)
    
    	return fn
    }
    
    // mapinitgen is a counter used to uniquify compiler-generated
    // map init functions.
    var mapinitgen int
    
    // AddKeepRelocations adds a dummy "R_KEEP" relocation from each
    // global map variable V to its associated outlined init function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/math/big/arith_test.go

    		}
    	}
    	if c != a.c {
    		t.Errorf("%s%+v\n\tgot c = %#x; want %#x", msg, a, c, a.c)
    	}
    }
    
    // TODO(gri) mulAddVWW and divWVW are symmetric operations but
    // their signature is not symmetric. Try to unify.
    
    type funWVW func(z []Word, xn Word, x []Word, y Word) (r Word)
    type argWVW struct {
    	z  nat
    	xn Word
    	x  nat
    	y  Word
    	r  Word
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	// information of all containers in the pod that are visible in Runtime.
    	GetPodStatus(ctx context.Context, uid types.UID, name, namespace string) (*PodStatus, error)
    	// TODO(vmarmol): Unify pod and containerID args.
    	// GetContainerLogs returns logs of a specific container. By
    	// default, it returns a snapshot of the container log. Set 'follow' to true to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top