Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Filtering (0.21 sec)

  1. guava/src/com/google/common/hash/LittleEndianByteArray.java

        // Due to the way we shift, we can stop iterating once we've run out of data, the rest
        // of the result already being filled with zeros.
    
        // This loop is critical to performance, so please check HashBenchmark if altering it.
        int limit = Math.min(length, 8);
        for (int i = 0; i < limit; i++) {
          // Shift value left while iterating logically through the array.
          result |= (input[offset + i] & 0xFFL) << (i * 8);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. RELEASE.md

        `tf.debugging.enable_traceback_filtering()`. If you are debugging a
        TensorFlow-internal issue (e.g. to prepare a TensorFlow PR), make sure to
        disable traceback filtering. You can check whether this feature is currently
        enabled by calling `tf.debugging.is_traceback_filtering_enabled()`.
    
        Note that this feature is only available with Python 3.7 or higher.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Fixed `kubectl events` not filtering events by `GroupVersion` for resources with a full name. ([#120119](https://github.com/kubernetes/kubernetes/pull/120119), [@Ithrael](https://github.com/Ithrael))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/kube-scheduler/config/v1.PluginSet"),
    						},
    					},
    					"postFilter": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    		localMetacacheMgr.deleteAll()
    	}
    	setObjectLayer(newObjectLayerFn())
    	cancel()
    	removeRoots(fsDirs)
    }
    
    // ExecObjectLayerDiskAlteredTest - executes object layer tests while altering
    // disks in between tests. Creates Erasure ObjectLayer instance and runs test for Erasure layer.
    func ExecObjectLayerDiskAlteredTest(t *testing.T, objTest objTestDiskNotFoundType) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64NotGreaterEqualF:
    		return OpARM64GreaterEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // arm64Invert evaluates (InvertFlags op), which
    // is the same as altering the condition codes such
    // that the same result would be produced if the arguments
    // to the flag-generating instruction were reversed, e.g.
    // (InvertFlags (CMP x y)) -> (CMP y x)
    func arm64Invert(op Op) Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		// while the second is used to provide a more timely status update during initialization and runs an one-shot update to the apiserver
    		// once the node becomes ready, then exits afterwards.
    		//
    		// Introduce some small jittering to ensure that over time the requests won't start
    		// accumulating at approximately the same time from the set of nodes due to priority and
    		// fairness effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top