Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for counter2 (0.3 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	LEAQ    (2*32)(inp), inp
    	LEAQ    (2*32)(oup), oup
    	SUBQ    $64, inl
    
    openAVX2MainLoop:
    	CMPQ inl, $512
    	JB   openAVX2MainLoopDone
    
    	// Load state, increment counter blocks, store the incremented counters
    	VMOVDQU ·chacha20Constants<>(SB), AA0; VMOVDQA AA0, AA1; VMOVDQA AA0, AA2; VMOVDQA AA0, AA3
    	VMOVDQA state1StoreAVX2, BB0; VMOVDQA BB0, BB1; VMOVDQA BB0, BB2; VMOVDQA BB0, BB3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    			// On failure, return error. Caller will log and retry.
    			eventErr, detailedErr := volumeToMount.GenerateError("MountVolume.SetUp failed", mountErr)
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		detailedMsg := volumeToMount.GenerateMsgDetailed("MountVolume.SetUp succeeded", "")
    		verbosity := klog.Level(1)
    		if isRemount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. src/encoding/json/testdata/code.json.gz

    1,"min_t":1236205616,"max_t":1236205616,"mean_t":1236205616},{"name":"counters","kids":[{"name":"counter-text-security-expected.png","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"counter-text-transform-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"counter-text-security-expected.checksum","kids":[],"cl_weight":0.000627005942...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          /*reuse_existing_functions=*/false, &graph, &library));
    
      std::vector<string> expected_nodes = {"cluster1", "cluster2", "mul", "x"};
      EXPECT_EQ(expected_nodes, GraphNodes(*graph));
    
      std::vector<std::pair<string, string>> expected_edges = {
          {"cluster1:0", "cluster2:0"},
          {"cluster1:0", "mul:0"},
          {"cluster2:0", "mul:1"},
          {"x:0", "cluster1:0"}};
      EXPECT_EQ(expected_edges, GraphEdges(*graph));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/popper.min.js.map

    an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nexport default function clockwise(placement, counter = false) {\n  const index = validPlacements.indexOf(placement);\n  const arr =...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

         // CHECK: "tf_device.cluster"
        "tf_device.cluster"() ({
          "tf.A"() : () -> ()
          "tf.B"() {_xla_outside_compilation = "cluster1"} : () -> ()
          "tf.C"() : () -> ()
          "tf.D"() {_xla_outside_compilation = "cluster2"} : () -> ()
          "tf.E"() : () -> ()
          tf_device.return
        }) {num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> ()
        func.return
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                generatedClasses = GENERATED_CLASSES_CACHES.get();
            } else {
                // TODO - the suffix should be a deterministic function of the known and enabled annotations
                // For now, just assign using a counter
                suffix = ClassGeneratorSuffixRegistry.assign("$Decorated");
                generatedClasses = cacheFactory.newClassMap();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      echo -n "Waiting for the load balancer configuration to propagate..."
      local counter=0
      until curl -k -m1 "https://${KUBE_MASTER_IP}" &> /dev/null; do
        counter=$((counter+1))
        echo -n .
        if [[ ${counter} -ge 1800 ]]; then
          echo -e "${color_red}TIMEOUT${color_norm}" >&2
          echo -e "${color_red}Load balancer failed to initialize within ${counter} seconds.${color_norm}" >&2
          exit 2
        fi
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    		lambdaMap[targetID.Name] = list
    	}
    
    	notify := make([]map[string][]madmin.TargetIDStatus, len(lambdaMap))
    	counter := 0
    	for key, value := range lambdaMap {
    		v := make(map[string][]madmin.TargetIDStatus)
    		v[key] = value
    		notify[counter] = v
    		counter++
    	}
    	return notify
    }
    
    // fetchKMSStatus fetches KMS-related status information for all instances
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top