Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for lasta (0.06 sec)

  1. tests/integration/security/authz_test.go

    						path  string
    						allow allowValue
    					}{
    						// Test matches for `/allow/admin/{**}`
    						{
    							path:  "/allow/admin/",
    							allow: true,
    						},
    						{
    							// When `**` is the last segment and operator in the template, the path must have a trailing `/` to match
    							path:  "/allow/admin",
    							allow: false,
    						},
    						{
    							path:  "/allow/user/",
    							allow: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. cmd/erasure-healing_test.go

    			er := z.serverPools[0].getHashedSet(object)
    
    			disks := er.getDisks()
    			distribution := hashOrder(pathJoin(bucket, object), nDisks)
    			shuffledDisks := shuffleDisks(disks, distribution)
    
    			// remove last data shard
    			err = removeAll(pathJoin(shuffledDisks[11].String(), bucket, object))
    			if err != nil {
    				t.Fatalf("Failed to delete a file - %v", err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, fmt.Sprintf("-Wl,--minor-subsystem-version=%d", PeMinimumTargetMinorVersion))
    	case objabi.Haix:
    		argv = append(argv, "-pthread")
    		// prevent ld to reorder .text functions to keep the same
    		// first/last functions for moduledata.
    		argv = append(argv, "-Wl,-bnoobjreorder")
    		// mcmodel=large is needed for every gcc generated files, but
    		// ld still need -bbigtoc in order to allow larger TOC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    				return fmt.Errorf("initialize logging: %v", err)
    			}
    			cliflag.PrintFlags(cleanFlagSet)
    
    			// We always validate the local configuration (command line + config file).
    			// This is the default "last-known-good" config for dynamic config, and must always remain valid.
    			if err := kubeletconfigvalidation.ValidateKubeletConfiguration(kubeletConfig, utilfeature.DefaultFeatureGate); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      auto status = QuantizeModel(&model_, output_buffer_);
      ASSERT_THAT(status, Eq(kTfLiteOk));
      const auto& subgraph = model_.subgraphs[0];
      // Check that the first op is Quantize and the last is Dequant.
      const auto& quant_op = subgraph->operators[0];
      const auto& dequant_op = subgraph->operators[subgraph->operators.size() - 1];
      const int32_t quant_idx = quant_op->opcode_index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        builder.create<mlir::tf_device::ReturnOp>(device_cluster.getLoc(),
                                                  host_launch_op->getResults());
      }
    
      // Move the launch body to last parallel_execute block.
      Block& parallel_execute_device_block =
          parallel_execute_op.GetRegionBlockWithIndex(
              core_to_tmp_host_launch.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	RetryAttempts int       `json:"retryAttempts" msg:"ra"`
    	Attempts      int       `json:"attempts" msg:"at"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    	Failed   bool `json:"failed" msg:"fld"`
    
    	// Last bucket/object batch replicated
    	Bucket string `json:"-" msg:"lbkt"`
    	Object string `json:"-" msg:"lobj"`
    
    	// Verbose information
    	Objects             int64 `json:"objects" msg:"ob"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    llvm::DenseMap<int, int> MapTensorListResultToArgument(func::FuncOp func) {
      // `map_fn` will trace upwards along the use-def chain of the ssa value. It
      // starts from the last ssa value (returned by the function), and check its
      // parent op iteratively. If the root ssa value appears in the function's
      // argument list, it will return the index of the corresponding argument,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top