Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 579 for holder (0.14 sec)

  1. pkg/ctrlz/assets/static/css/all.css

    h6 {
        font-size: .9rem;
        color: #f8f8f8;
        font-weight: 500
    }
    
    .header-link {
        position: relative;
        left: 0.5em;
        top: -.1em;
        opacity: 0;
        font-size: 0.6em
    }
    
    h2:hover .header-link, h3:hover .header-link, h4:hover .header-link, h5:hover .header-link, h6:hover .header-link, dt:hover .header-link {
        transition: opacity .4s ease-in-out;
        opacity: 1
    }
    
    @media print {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. tools/docker-builder/docker.go

    // Dockerfile (as declared in docker.yaml). Creating this staging folder ensures that we do not copy
    // the entire source tree into the docker context (expensive) or need complex .dockerignore files.
    //
    // Once we have these staged folders, we just construct a docker bakefile and pass it to `buildx
    // bake` and let it do its work.
    func RunDocker(args Args) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .citetitle {
        font-style: normal;
    }
    
    table th.border-right {
        border-right: solid #d0d0d0 1px;
    }
    
    table th.no-border-bottom {
        border-bottom: none;
    }
    
    h3.releaseinfo {
        color: #999;
        font-weight: normal;
        margin-top: -0.5em;
    }
    
    /* Site header specific styles */
    .hamburger {
        background-color: transparent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	h, err := tlog.TreeHash(older.N, thr)
    	if err != nil {
    		if older.N == newer.N {
    			return fmt.Errorf("checking tree#%d: %v", older.N, err)
    		}
    		return fmt.Errorf("checking tree#%d against tree#%d: %v", older.N, newer.N, err)
    	}
    	if h == older.Hash {
    		return nil
    	}
    
    	// Detected a fork in the tree timeline.
    	// Start by reporting the inconsistent signed tree notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. javadoc-stylesheet.css

        background-color:#dee3e9;
        border-top:1px solid #9eadc0;
        border-bottom:1px solid #9eadc0;
        margin:0 0 6px -8px;
        padding:2px 5px;
    }
    ul.blockList ul.blockList ul.blockList li.blockList h3 {
        background-color:#dee3e9;
        border-top:1px solid #9eadc0;
        border-bottom:1px solid #9eadc0;
        margin:0 0 6px -8px;
        padding:2px 5px;
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  6. src/go/printer/printer_test.go

    	{"generics.input", "generics.golden", idempotent | allowTypeParams},
    	{"gobuild1.input", "gobuild1.golden", idempotent},
    	{"gobuild2.input", "gobuild2.golden", idempotent},
    	{"gobuild3.input", "gobuild3.golden", idempotent},
    	{"gobuild4.input", "gobuild4.golden", idempotent},
    	{"gobuild5.input", "gobuild5.golden", idempotent},
    	{"gobuild6.input", "gobuild6.golden", idempotent},
    	{"gobuild7.input", "gobuild7.golden", idempotent},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. cmd/metacache-walk.go

    				pop := dirStack[len(dirStack)-1]
    				select {
    				case <-ctx.Done():
    					return ctx.Err()
    				case out <- metaCacheEntry{name: pop}:
    				}
    				if opts.Recursive {
    					// Scan folder we found. Should be in correct sort order where we are.
    					err := scanDir(pop)
    					if err != nil && !IsErrIgnored(err, context.Canceled) {
    						internalLogIf(ctx, err)
    					}
    				}
    				dirStack = dirStack[:len(dirStack)-1]
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

    John Howard <******@****.***> 1701468465 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/init.go

    }
    
    // ManifestDir returns the path where manifest should be stored or the temporary folder path in case of DryRun.
    func (d *initData) ManifestDir() string {
    	if d.dryRun {
    		return d.dryRunDir
    	}
    	return kubeadmconstants.GetStaticPodDirectory()
    }
    
    // KubeletDir returns path of the kubelet configuration folder or the temporary folder in case of DryRun.
    func (d *initData) KubeletDir() string {
    	if d.dryRun {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/logic_test.go

    	// golden functions we use repeatedly
    	zero := func(x int64) int64 { return 0 }
    	id := func(x int64) int64 { return x }
    	or := func(x, y int64) int64 { return x | y }
    	and := func(x, y int64) int64 { return x & y }
    	y := func(x, y int64) int64 { return y }
    
    	for _, test := range [...]struct {
    		name   string
    		f      func(int64) int64
    		golden func(int64) int64
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top