Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 159 for spacer (0.17 sec)

  1. cmd/batch-handlers.go

    				if aerr == nil {
    					return
    				}
    				batchLogIf(ctx,
    					fmt.Errorf("trying %s: Unable to cleanup failed multipart replication %s on remote %s/%s: %w - this may consume space on remote cluster",
    						humanize.Ordinal(attempts), res.UploadID, tgtBucket, tgtObject, aerr))
    				attempts++
    				time.Sleep(time.Second)
    			}
    		}
    	}()
    
    	var (
    		hr    *hash.Reader
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    		{`"etag-2"`, `"etag-2"`, ""},
    		{`"etag-1", "etag-2"`, `"etag-1"`, `, "etag-2"`},
    		{"", "", ""},
    		{"W/", "", ""},
    		{`W/"truc`, "", ""},
    		{`w/"case-sensitive"`, "", ""},
    		{`"spaced etag"`, "", ""},
    	}
    	for _, test := range tests {
    		etag, remain := ExportScanETag(test.in)
    		if etag != test.wantETag || remain != test.wantRemain {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/font-awesome.min.css

    ontent:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.f...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    					sih.Name, sjh.Name, sjh.Offset, sih.Offset, sih.Offset+sih.FileSize, sjh.Offset+sjh.FileSize)
    			}
    		}
    
    		if sih.Flags&SHF_ALLOC == 0 {
    			continue
    		}
    
    		// checking for overlap in address space
    		for j, sj := range f.Sections {
    			sjh := sj.SectionHeader
    			if i == j || sjh.Flags&SHF_ALLOC == 0 || sjh.Type == SHT_NOBITS ||
    				sih.Addr == sjh.Addr && sih.Size == 0 {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation_test.go

    			networkPolicy.Spec.Ingress[0].From[0].IPBlock.Except = []string{""}
    		}),
    		"except field is an space string": makeNetworkPolicyCustom(setIngressFromIPBlockIPV4, func(networkPolicy *networking.NetworkPolicy) {
    			networkPolicy.Spec.Ingress[0].From[0].IPBlock.Except = []string{" "}
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    func (f *Field) IsMethod() bool {
    	return f.Type.kind == TFUNC && f.Type.Recv() != nil
    }
    
    // fields is a pointer to a slice of *Field.
    // This saves space in Types that do not have fields or methods
    // compared to a simple slice of *Field.
    type fields struct {
    	s *[]*Field
    }
    
    // Slice returns the entries in f as a slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	writerMutex.Unlock()
    
    	return err
    }
    
    // writerMutex protects all KeyLogWriters globally. It is rarely enabled,
    // and is only for debugging, so a global mutex saves space.
    var writerMutex sync.Mutex
    
    // A Certificate is a chain of one or more certificates, leaf first.
    type Certificate struct {
    	Certificate [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	// filters fail, we don't run the second pass.
    	// We consider only equal or higher priority pods in the first pass, because
    	// those are the current "pod" must yield to them and not take a space opened
    	// for running them. It is ok if the current "pod" take resources freed for
    	// lower priority pods.
    	// Requiring that the new pod is schedulable in both circumstances ensures that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

        HTTP/2 server, close all but the first connection.
     *  Fix: Fail the HTTP/2 connection if first frame isn't `SETTINGS`.
     *  Fix: Forbid spaces in header names.
     *  Fix: Don't offer to do gzip if the request is partial.
     *  Fix: MockWebServer is now usable with JUnit 5. That update [broke the rules][junit_5_rules].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top