Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for isMatching (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

    }
    
    // Verifies that the given types are cast compatible. If not, emits appropriate
    // error for the given op. If mask_one_dim is set to true, then the types are
    // allowed to have one mismatching dimension. Masking one of the dimensions is
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/util/protomarshal/protomarshal.go

    		return err
    	}
    	return ApplyJSONStrict(string(js), pb)
    }
    
    func ShallowCopy(dst, src proto.Message) {
    	dm := dst.ProtoReflect()
    	sm := src.ProtoReflect()
    	if dm.Type() != sm.Type() {
    		panic("mismatching type")
    	}
    	proto.Reset(dst)
    	sm.Range(func(fd protoreflect.FieldDescriptor, v protoreflect.Value) bool {
    		dm.Set(fd, v)
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    // Interface defines how the API Priority and Fairness filter interacts with the underlying system.
    type Interface interface {
    	// Handle takes care of queuing and dispatching a request
    	// characterized by the given digest.  The given `noteFn` will be
    	// invoked with the results of request classification.
    	// The given `workEstimator` is called, if at all, after noteFn.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *
     * <p>Listeners are registered once via {@link #addListener} and then may be invoked by {@linkplain
     * #enqueue enqueueing} and then {@linkplain #dispatch dispatching} events.
     *
     * <p>The API of this class is designed to make it easy to achieve the following properties
     *
     * <ul>
     *   <li>Multiple events for the same listener are never dispatched concurrently.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/runtime/debugcall.go

    	})
    	return ret
    }
    
    // debugCallWrap starts a new goroutine to run a debug call and blocks
    // the calling goroutine. On the goroutine, it prepares to recover
    // panics from the debug call, and then calls the call dispatching
    // function at PC dispatch.
    //
    // This must be deeply nosplit because there are untyped values on the
    // stack from debugCallV2.
    //
    //go:nosplit
    func debugCallWrap(dispatch uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/binder_test.go

    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// failed syncVolume do not bind when pvc is prebound to pv with mismatching volumeModes
    			name:            "14-8 - do not bind when pvc is prebound to pv with mismatching volumeModes",
    			initialVolumes:  withVolumeVolumeMode(&modeBlock, newVolumeArray("volume14-8", "10Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  7. src/compress/flate/deflate_test.go

    		ferr := zw.Flush()
    		if werr != errIO && werr != nil {
    			t.Errorf("test %d, mismatching Write error: got %v, want %v", i, werr, errIO)
    		}
    		if cerr != errIO && fw.n < 0 {
    			t.Errorf("test %d, mismatching Close error: got %v, want %v", i, cerr, errIO)
    		}
    		if ferr != errIO && fw.n < 0 {
    			t.Errorf("test %d, mismatching Flush error: got %v, want %v", i, ferr, errIO)
    		}
    		if fw.n >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. pkg/volume/volume_linux.go

    	if (unixPerms&filePerm != unixPerms) || (fsInfo.Mode()&os.ModeSetgid == 0) {
    		klog.V(4).InfoS("Performing recursive ownership change on rootDir because of mismatching mode", "path", rootDir)
    		return true
    	}
    	return false
    }
    
    // readDirNames reads the directory named by dirname and returns
    // a list of directory entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // and there is an implementation outline in the Wikipedia article at
    // https://en.wikipedia.org/wiki/Fair_queuing .
    //
    // Fair queuing for server requests differs from traditional fair
    // queuing in three ways: (1) we are dispatching application layer
    // requests to a server rather than transmitting packets on a network
    // link, (2) multiple requests can be executing at once, and (3) the
    // service time (execution duration) is not known until the execution
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *
     * <p>Listeners are registered once via {@link #addListener} and then may be invoked by {@linkplain
     * #enqueue enqueueing} and then {@linkplain #dispatch dispatching} events.
     *
     * <p>The API of this class is designed to make it easy to achieve the following properties
     *
     * <ul>
     *   <li>Multiple events for the same listener are never dispatched concurrently.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top