Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 137 for spacer (0.46 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/types2/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
    - 51.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    +
    ----
    task myTask {
        doLast {
            ...
        }
    }
    ----
     * You can no longer use any of the following characters in domain object names, such as project and task names: <space> `/ \ : < > " ? * |` . You should also not use `.` as a leading or trailing character.
    Running Gradle & build environment::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top