Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 218 for endPod (0.14 sec)

  1. src/archive/tar/writer.go

    func (sw *sparseFileWriter) Write(b []byte) (n int, err error) {
    	overwrite := int64(len(b)) > sw.logicalRemaining()
    	if overwrite {
    		b = b[:sw.logicalRemaining()]
    	}
    
    	b0 := b
    	endPos := sw.pos + int64(len(b))
    	for endPos > sw.pos && err == nil {
    		var nf int // Bytes written in fragment
    		dataStart, dataEnd := sw.sp[0].Offset, sw.sp[0].endOffset()
    		if sw.pos < dataStart { // In a hole fragment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/mime/multipart/multipart_test.go

    		},
    	},
    
    	// Single empty part, ended with --boundary immediately after headers.
    	{
    		name: "single empty part, --boundary",
    		sep:  "abc",
    		in:   "--abc\r\nFoo: bar\r\n\r\n--abc--",
    		want: []headerBody{
    			{textproto.MIMEHeader{"Foo": {"bar"}}, ""},
    		},
    	},
    
    	// Single empty part, ended with \r\n--boundary immediately after headers.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  3. src/go/ast/ast.go

    	}
    	return s.Path.Pos()
    }
    func (s *ValueSpec) Pos() token.Pos { return s.Names[0].Pos() }
    func (s *TypeSpec) Pos() token.Pos  { return s.Name.Pos() }
    
    func (s *ImportSpec) End() token.Pos {
    	if s.EndPos != 0 {
    		return s.EndPos
    	}
    	return s.Path.End()
    }
    
    func (s *ValueSpec) End() token.Pos {
    	if n := len(s.Values); n > 0 {
    		return s.Values[n-1].End()
    	}
    	if s.Type != nil {
    		return s.Type.End()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. docs/ko/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/base/base.go

    			}
    		}
    
    		// In this case we're done boosting GOGC, set it to 100 and don't set a new finalizer.
    		oldGogc := debug.SetGCPercent(100)
    		// inUse helps estimate how late the finalizer ran; at the instant the previous GC ended,
    		// it was (in theory) equal to the previous GC's heap goal.  In a growing heap it is
    		// expected to grow to the new heap goal.
    		inUse := sample[ALLOCS].Value.Uint64() - sample[FREES].Value.Uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/html/template/context.go

    	stateTag
    	// stateAttrName occurs inside an attribute name.
    	// It occurs between the ^'s in ` ^name^ = value`.
    	stateAttrName
    	// stateAfterName occurs after an attr name has ended but before any
    	// equals sign. It occurs between the ^'s in ` name^ ^= value`.
    	stateAfterName
    	// stateBeforeValue occurs after the equals sign but before the value.
    	// It occurs between the ^'s in ` name =^ ^value`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. docs/zh-hant/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. docs/yo/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    			return result, nil
    		}
    		klog.Warningf("The watchlist request for customresourcedefinitions ended with an error, falling back to the standard LIST semantics, err = %v", err)
    	}
    	result, err := c.list(ctx, opts)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            } catch (DependencyResolutionException e) {
                result = e.getResult();
    
                /*
                 * MNG-2277, the check below compensates for our bad plugin support where we ended up with aggregator
                 * plugins that require dependency resolution although they usually run in phases of the build where project
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top