Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for gold (0.26 sec)

  1. pilot/pkg/model/gateway.go

    }
    
    // MergedServers describes set of servers defined in all gateways per port.
    type MergedServers struct {
    	Servers   []*networking.Server
    	RouteName string // RouteName for http servers. For HTTPS, TLSServerInfo will hold the route name.
    }
    
    // TLSServerInfo contains additional information for TLS Servers.
    type TLSServerInfo struct {
    	RouteName string
    	SNIHosts  []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    	// runtime. Implementation is expected to update this cache periodically.
    	// This may be different from the runtime engine's version.
    	// TODO(random-liu): We should fold this into Version()
    	APIVersion() (Version, error)
    	// Status returns the status of the runtime. An error is returned if the Status
    	// function itself fails, nil otherwise.
    	Status(ctx context.Context) (*RuntimeStatus, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            == createInstance(factory, args).hashCode();
      }
    
      // distinctValues is a type-safe class-values mapping, but we don't have a type-safe data
      // structure to hold the mappings.
      @SuppressWarnings({"unchecked", "rawtypes"})
      private FreshValueGenerator newFreshValueGenerator() {
        FreshValueGenerator generator =
            new FreshValueGenerator() {
              @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    func TestDedupEnvEcho(t *testing.T) {
    	t.Parallel()
    
    	cmd := helperCommand(t, "echoenv", "FOO")
    	cmd.Env = append(cmd.Environ(), "FOO=bad", "FOO=good")
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got, want := strings.TrimSpace(string(out)), "good"; got != want {
    		t.Errorf("output = %q; want %q", got, want)
    	}
    }
    
    func TestEnvNULCharacter(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	letterIdxMax  = 63 / letterIdxBits   // # of letter indices fitting in 63 bits
    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. cmd/metacache-set.go

    	bucket, path  string
    	recursive     bool
    
    	// Only return results with this prefix.
    	filterPrefix string
    
    	// Forward to this prefix before returning results.
    	forwardTo string
    
    	// Minimum number of good disks to continue.
    	// An error will be returned if this many disks returned an error.
    	minDisks       int
    	reportNotFound bool
    
    	// perDiskLimit will limit each disk to return n objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	// and updated from new information that flows on back edges.
    	startState, endState abt.T
    	// Use these to avoid excess work in the merge. If none of the
    	// predecessors has changed since the last check, the old answer is
    	// still good.
    	lastCheckedTime, lastChangedTime int32
    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. cmd/erasure-healing.go

    	// (by modtime).
    	onlineDisks, modTime, etag := listOnlineDisks(storageDisks, partsMetadata, errs, readQuorum)
    
    	// Latest FileInfo for reference. If a valid metadata is not
    	// present, it is as good as object not found.
    	latestMeta, err := pickValidFileInfo(ctx, partsMetadata, modTime, etag, readQuorum)
    	if err != nil {
    		return result, err
    	}
    
    	// List of disks having all parts as per latest metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto result_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!input_ty || !filter_ty || !result_ty) return failure();
        // TODO(disc): Remove this constraint once fold and canonicalization
        // implemented.
        if (input_ty.hasStaticShape() && filter_ty.hasStaticShape())
          return failure();
    
        ArrayRef<Attribute> dilations = op.getDilations().getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. cmd/iam.go

    	}
    	var arns []string
    	for arn := range sys.rolesMap {
    		arns = append(arns, arn.String())
    	}
    	sort.Strings(arns)
    	msgs := make([]string, 0, len(arns))
    	for _, arn := range arns {
    		msgs = append(msgs, color.Bold(arn))
    	}
    
    	logger.Info(fmt.Sprintf("%s %s", color.Blue("IAM Roles:"), strings.Join(msgs, " ")))
    }
    
    // HasWatcher - returns if the IAM system has a watcher to be notified of
    // changes.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top