Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for uniqify (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	var startWG sync.WaitGroup
    	for matches, digests1 := range ftr.digests {
    		for isResource, digests2 := range digests1 {
    			for _, rd := range digests2 {
    				finishCh := make(chan struct{})
    				rdu := uniqify(rd)
    				cts.requestWG.Add(1)
    				startWG.Add(1)
    				go func(matches, isResource bool, rdu RequestDigest) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    				}
    				if thisMatches {
    					t.Errorf("Fail in check: rule %s matches digest %#+v", fcfmt.Fmt(rule), digest)
    				}
    			}
    		}
    	}
    	return ans
    }
    
    var uCounter uint32 = 1
    
    func uniqify(in RequestDigest) RequestDigest {
    	u1 := in.User.(*user.DefaultInfo)
    	u2 := *u1
    	u2.Extra = map[string][]string{"u": {fmt.Sprintf("z%d", atomic.AddUint32(&uCounter, 1))}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    		}
    
    	case *Slice:
    		// Two slice types unify if their element types unify.
    		if y, ok := y.(*Slice); ok {
    			return u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Struct:
    		// Two struct types unify if they have the same sequence of fields,
    		// and if corresponding fields have the same names, their (field) types unify,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/unify.go

    		}
    
    	case *Slice:
    		// Two slice types unify if their element types unify.
    		if y, ok := y.(*Slice); ok {
    			return u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Struct:
    		// Two struct types unify if they have the same sequence of fields,
    		// and if corresponding fields have the same names, their (field) types unify,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_compilation_cache.proto

      uint64 cluster_fingerprint = 2;
      string device_type = 3;
      string prefix = 4;
      bool compiled_using_pjrt = 5;
    }
    
    // Represents an entry in the XLA compile cache.
    message XlaSerializedCacheEntry {
      // Used to uniqely identify this entry in its persisted representation.
      XlaSerializedCacheKey key = 1;
    
      // The computation (HLO) that compilation was done for. It is correlated to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/infer.go

    					//    against the core type.
    					//    But because unify automatically matches a defined type against
    					//    an underlying literal type, we can simply unify tx with the
    					//    core type.
    					// 2) If the core type doesn't have a tilde, we also must unify tx
    					//    with the core type.
    					if !u.unify(tx, core.typ, 0) {
    						// TODO(gri) Type parameters that appear in the constraint and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/go/types/infer.go

    					//    against the core type.
    					//    But because unify automatically matches a defined type against
    					//    an underlying literal type, we can simply unify tx with the
    					//    core type.
    					// 2) If the core type doesn't have a tilde, we also must unify tx
    					//    with the core type.
    					if !u.unify(tx, core.typ, 0) {
    						// TODO(gri) Type parameters that appear in the constraint and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/testing/run_example.go

    // Copyright 2019 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.
    
    //go:build !js && !wasip1
    
    // TODO(@musiol, @odeke-em): re-unify this entire file back into
    // example.go when js/wasm gets an os.Pipe implementation
    // and no longer needs this separation.
    
    package testing
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue60688.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type String string
    
    func g[P any](P, string) {}
    
    // String and string are not identical and thus must not unify
    // (they are element types of the func type and therefore must
    // be identical to match).
    // The result is an error from type inference, rather than an
    // error from an assignment mismatch.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 607 bytes
    - Viewed (0)
  10. README.md

    </dependency>
    ```
    
    ## Changes
    
     * SMB2 (2.02 protocol level) support, some SMB3 support
     * Remove global state
     * Allow per context configuration
     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
     * Large ReadX/WriteX support
     * Streaming list operations
     * NtTransNotifyChange support
     * Google patches: various bugfixes, lastAccess support, retrying requests
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top