Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for gems (0.06 sec)

  1. cmd/object-handlers.go

    	})
    	if err != nil {
    		return nil, err
    	}
    	core.SetAppInfo("minio-federated", ReleaseTag)
    	return core, nil
    }
    
    // Check if the destination bucket is on a remote site, this code only gets executed
    // when federation is enabled, ie when globalDNSConfig is non 'nil'.
    //
    // This function is similar to isRemoteCallRequired but specifically for COPY object API
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    		totalPods int,
    		selector labels.Selector,
    	) []*v1.Pod {
    		// only one pod gets created at a time due to OrderedReady
    		if len(pods) != 5 {
    			t.Fatalf("Expected create pods 5, got pods %v", len(pods))
    		}
    		spc.setPodRunning(set, 4)
    		pods, _ = spc.setPodReady(set, 4)
    
    		// create new pods 4(only one pod gets created at a time due to OrderedReady)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	wait.Until(func() {
    		// fastNodeStatusUpdate returns true when it succeeds or when the grace period has expired
    		// (status was not updated within nodeReadyGracePeriod and the second argument below gets true),
    		// then we close the channel and abort the loop.
    		if kl.fastNodeStatusUpdate(ctx, kl.clock.Since(start) >= nodeReadyGracePeriod) {
    			close(stopCh)
    		}
    	}, 100*time.Millisecond, stopCh)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	// vendoring or possible module adjustment.
    	// Every import path should be loaded initially with ResolveImport,
    	// and then the expanded version (for example with the /vendor/ in it)
    	// gets recorded as the canonical import path. At that point, future loads
    	// of that package must not pass ResolveImport, because
    	// disallowVendor will reject direct use of paths containing /vendor/.
    	ResolveImport = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      const auto shape_attr = DenseIntElementsAttr::get(shape_type, shape_i32);
      return rewriter.create<arith::ConstantOp>(loc, shape_attr);
    }
    
    // Returns the desired qi8 per-tensor quantized output type for a given gemm op.
    Type GetQuantizedOutputType(Operation* op, PatternRewriter& rewriter,
                                const bool has_i32_output,
                                const bool fuse_bias_constant) {
      Operation* uniform_quantize_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    	if err != nil {
    		msg := fmt.Errorf("error marking pvc %s for node expansion: %v", util.GetPersistentVolumeClaimQualifiedName(pvc), err)
    		return pvc, msg
    	}
    	// store old PVC capacity in pv, so as if PVC gets deleted while node expansion was pending
    	// we can restore size of pvc from PV annotation and still perform expansion on the node
    	oldCapacity := pvc.Status.Capacity[v1.ResourceStorage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      auto indices_type = mlir::dyn_cast<RankedTensorType>(indices.getType());
      // Checks the shape of `params` is [n, ...], shape of `indices` is [n, 1]. 2D
      // `indices` means it gets the first row of `params`. As long as indices
      // iterate the first row of `params`, the output is identical to input.
      if (!params_type || !indices_type || indices_type.getRank() != 2 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    	zwriter, zerr := zipWriter.CreateHeader(header)
    	if zerr != nil {
    		return zerr
    	}
    	_, err := io.Copy(zwriter, bytes.NewReader(data))
    	return err
    }
    
    // getClusterMetaInfo gets information of the current cluster and
    // returns it.
    // This is not a critical function, and it is allowed
    // to fail with a ten seconds timeout, returning nil.
    func getClusterMetaInfo(ctx context.Context) []byte {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	fakeRuntime.PodList = []*containertest.FakePod{
    		{Pod: pod},
    	}
    	kubelet := testKubelet.kubelet
    	kubelet.cgroupsPerQOS = true // enable cgroupsPerQOS to turn on the cgroups cleanup
    
    	// HandlePodCleanups gets called every 2 seconds within the Kubelet's
    	// housekeeping routine. This test registers the pod, removes the unwanted pod, then calls into
    	// HandlePodCleanups a few more times. We should only see one Destroy() event. podKiller runs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            body = "This page has moved!",
          ),
        )
        server.enqueue(
          MockResponse(body = "Proxy Response"),
        )
        val response = getResponse(newRequest("/foo"))
        // Fails on the RI, which gets "Proxy Response".
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE))
          .isEqualTo("This page has moved!")
        val page1 = server.takeRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top