Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for gems (0.08 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"garlic":                               "\U0001f9c4",
    	"gb":                                   "\U0001f1ec\U0001f1e7",
    	"gear":                                 "\u2699\ufe0f",
    	"gem":                                  "\U0001f48e",
    	"gemini":                               "\u264a",
    	"genie":                                "\U0001f9de",
    	"genie_man":                            "\U0001f9de\u200d\u2642\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
        tf_device.replicate([%0, %1] as %ri: tensor<*xi32>) {n = 2 : i32} {
          %2 = "tf.Shape"(%ri) : (tensor<*xi32>) -> tensor<?xi32>
          tf_device.return
        }
        ```
    
        gets converted to
    
        ```mlir
        tf_device.replicate([%0, %1] as %ri: tensor<*xi32>) {n = 2 : i32} {
          %2 = "tf.Shape"(%0) : (tensor<*xi32>) -> tensor<?xi32>
          tf_device.return
        }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	// ReplicationSsecChecksumHeader - the encrypted checksum of the SSE-C encrypted object.
    	ReplicationSsecChecksumHeader = "X-Minio-Replication-Ssec-Crc"
    )
    
    // gets replication config associated to a given bucket name.
    func getReplicationConfig(ctx context.Context, bucketName string) (rc *replication.Config, err error) {
    	rCfg, _, err := globalBucketMetadataSys.GetReplicationConfig(ctx, bucketName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	if err != nil {
    		return nil, err
    	}
    
    	return db.queryDC(ctx, nil, dc, dc.releaseConn, query, args)
    }
    
    // queryDC executes a query on the given connection.
    // The connection gets released by the releaseConn function.
    // The ctx context is from a query method and the txctx context is from an
    // optional transaction context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top