Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for webform (0.4 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    type OperationGenerator interface {
    	// Generates the MountVolume function needed to perform the mount of a volume plugin
    	GenerateMountVolumeFunc(waitForAttachTimeout time.Duration, volumeToMount VolumeToMount, actualStateOfWorldMounterUpdater ActualStateOfWorldMounterUpdater, isRemount bool) volumetypes.GeneratedOperations
    
    	// Generates the UnmountVolume function needed to perform the unmount of a volume plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	XORQ itr2, itr2
    	MOVQ inl, itr1
    	CMPQ itr1, $16
    	JB   openSSETail64LoopB
    
    openSSETail64LoopA:
    	// Perform ChaCha rounds, while hashing the remaining input
    	polyAdd(0(inp)(itr2*1))
    	polyMul
    	SUBQ $16, itr1
    
    openSSETail64LoopB:
    	ADDQ          $16, itr2
    	chachaQR(A0, B0, C0, D0, T0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_PCC     uint32 = 0xB92C // FORMAT_RRE        PERFORM CRYPTOGRAPHIC COMPUTATION
    	op_PCKMO   uint32 = 0xB928 // FORMAT_RRE        PERFORM CRYPTOGRAPHIC KEY MGMT. OPERATIONS
    	op_PFD     uint32 = 0xE336 // FORMAT_RXY2       PREFETCH DATA
    	op_PFDRL   uint32 = 0xC602 // FORMAT_RIL3       PREFETCH DATA RELATIVE LONG
    	op_PFMF    uint32 = 0xB9AF // FORMAT_RRE        PERFORM FRAME MANAGEMENT FUNCTION
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * to be a view, but it means that the function will be applied many times for bulk operations
       * like {@link Map#containsValue} and {@code Map.toString()}. For this to perform well, {@code
       * function} should be fast. To avoid lazy evaluation when the returned map doesn't need to be a
       * view, copy the returned map into a new map of your choosing.
       */
      public static <
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

       * to be a view, but it means that the function will be applied many times for bulk operations
       * like {@link Map#containsValue} and {@code Map.toString()}. For this to perform well, {@code
       * function} should be fast. To avoid lazy evaluation when the returned map doesn't need to be a
       * view, copy the returned map into a new map of your choosing.
       */
      public static <
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          ]
      )
      def conv(self, conv_input: core.Tensor) -> Mapping[str, core.Tensor]:
        """Performs a 2D convolution operation.
    
        Args:
          conv_input: Input tensor to perform convolution on.
    
        Returns:
          A map of: output key -> output result.
        """
        out = nn_ops.conv2d(
            conv_input,
            self.conv_filters,
            strides=[1, 1, 2, 1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

                ValueReference<K, V> valueReference = e.getValueReference();
                V entryValue = valueReference.get();
                // replace the old LoadingValueReference if it's live, otherwise
                // perform a putIfAbsent
                if (oldValueReference == valueReference
                    || (entryValue == null && valueReference != UNSET)) {
                  ++modCount;
                  if (oldValueReference.isActive()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

                ValueReference<K, V> valueReference = e.getValueReference();
                V entryValue = valueReference.get();
                // replace the old LoadingValueReference if it's live, otherwise
                // perform a putIfAbsent
                if (oldValueReference == valueReference
                    || (entryValue == null && valueReference != UNSET)) {
                  ++modCount;
                  if (oldValueReference.isActive()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    			}
    		}
    		totalRx += n
    		if err != nil || ctx.Err() != nil || totalRx > 100*humanize.GiByte {
    			break
    		}
    
    	}
    	w.WriteHeader(http.StatusOK)
    }
    
    // NetperfHandler - perform mesh style network throughput test
    func (a adminAPIHandlers) NetperfHandler(w http.ResponseWriter, r *http.Request) {
    	ctx, cancel := context.WithCancel(r.Context())
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    			if !manager.IsUnderDiskPressure() {
    				t.Fatalf("Manager should report disk pressure")
    			}
    
    			if diskGC.imageGCInvoked || diskGC.containerGCInvoked {
    				t.Errorf("Manager chose to perform image gc when it was not needed")
    			}
    
    			// no pod should have been killed
    			if podKiller.pod != nil {
    				t.Fatalf("Manager chose to kill pod: %v when no pod should have been killed", podKiller.pod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top