Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 358 for data_ (0.09 sec)

  1. docs/en/docs/css/termynal.css

        display: inline-block;
        vertical-align: middle;
    }
    
    [data-ty="input"]:before,
    [data-ty-prompt]:before {
        margin-right: 0.75em;
        color: var(--color-text-subtle);
    }
    
    [data-ty="input"]:before {
        content: '$';
    }
    
    [data-ty][data-ty-prompt]:before {
        content: attr(data-ty-prompt);
    }
    
    [data-ty-cursor]:after {
        content: attr(data-ty-cursor);
        font-family: monospace;
        margin-left: 0.5em;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray.go

    	}
    	return ints{nil, a.int64[i:j]}
    }
    
    // New creates a new [Index] for data.
    // [Index] creation time is O(N) for N = len(data).
    func New(data []byte) *Index {
    	ix := &Index{data: data}
    	if len(data) <= maxData32 {
    		ix.sa.int32 = make([]int32, len(data))
    		text_32(data, ix.sa.int32)
    	} else {
    		ix.sa.int64 = make([]int64, len(data))
    		text_64(data, ix.sa.int64)
    	}
    	return ix
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		cfg := data.InitCfg()
    		client := data.Client()
    		dryRun := data.DryRun()
    		etcdUpgrade := data.EtcdUpgrade()
    		renewCerts := data.RenewCerts()
    		patchesDir := data.PatchesDir()
    
    		// Upgrade the control plane and etcd if installed on this node
    		fmt.Printf("[upgrade] Upgrading your Static Pod-hosted control plane instance to version %q...\n", cfg.KubernetesVersion)
    		if dryRun {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprInitializer.ir.txt

              GET_VAR 'featuredPodcast: data.PodcastWithExtraInfo declared in home.preview' type=data.PodcastWithExtraInfo origin=null
            VAR name:podcast type:kotlin.String [val]
              CALL 'public final fun component1 (): kotlin.String [operator] declared in data.PodcastWithExtraInfo' type=kotlin.String origin=COMPONENT_N(index=1)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/LanguageTree.kt

            get() = content.filterIsInstance<DataStatement>()
    }
    
    
    data class Import(val name: AccessChain, override val sourceData: SourceData) : LanguageTreeElement
    
    
    data class AccessChain(val nameParts: List<String>)
    
    
    data class PropertyAccess(val receiver: Expr?, val name: String, override val sourceData: SourceData) : Expr
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/internal/concurrent/hashtriemap_bench_test.go

    }
    
    func benchmarkHashTrieMapLoad(b *testing.B, data []string) {
    	b.ReportAllocs()
    	m := NewHashTrieMap[string, int]()
    	for i := range data {
    		m.LoadOrStore(data[i], i)
    	}
    	b.ResetTimer()
    	b.RunParallel(func(pb *testing.PB) {
    		i := 0
    		for pb.Next() {
    			_, _ = m.Load(data[i])
    			i++
    			if i >= len(data) {
    				i = 0
    			}
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:20:09 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

          GetBoolFromCompositeAttr(composite_attrs, "ceil_mode").value();
    
      data.h_out = CalculateSpatialOutDim(data.h_in, data.kh, data.ph, data.sh,
                                          data.ceil_mode);
      data.w_out = CalculateSpatialOutDim(data.w_in, data.kw, data.pw, data.sw,
                                          data.ceil_mode);
    
      return data;
    }
    
    // Determines the true number of present elements in the given window
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Sum224 returns the SHA3-224 digest of the data.
    func Sum224(data []byte) (digest [28]byte) {
    	h := New224()
    	h.Write(data)
    	h.Sum(digest[:0])
    	return
    }
    
    // Sum256 returns the SHA3-256 digest of the data.
    func Sum256(data []byte) (digest [32]byte) {
    	h := New256()
    	h.Write(data)
    	h.Sum(digest[:0])
    	return
    }
    
    // Sum384 returns the SHA3-384 digest of the data.
    func Sum384(data []byte) (digest [48]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/os/writeto_linux_test.go

    	}
    
    	// Verify the data size and content.
    	dataSize := len(data)
    	dstData := make([]byte, dataSize)
    	m, err := io.ReadFull(recv, dstData)
    	if err != nil {
    		t.Fatalf("server Conn Read error: %v", err)
    	}
    	if n != int64(dataSize) {
    		t.Fatalf("data length mismatch for io.Copy, got %d, want %d", n, dataSize)
    	}
    	if m != dataSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    		return errors.Wrap(err, "error creating local etcd static pod manifest file")
    	}
    
    	return nil
    }
    
    func runMarkControlPlanePhase(c workflow.RunData) error {
    	data, ok := c.(JoinData)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top