Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for palmer (0.14 sec)

  1. lib/time/zoneinfo.zip

    America/Tortola America/Vancouver America/Virgin America/Whitehorse America/Winnipeg America/Yakutat America/Yellowknife Antarctica/Casey Antarctica/Davis Antarctica/DumontDUrville Antarctica/Macquarie Antarctica/Mawson Antarctica/McMurdo Antarctica/Palmer Antarctica/Rothera Antarctica/South_Pole Antarctica/Syowa Antarctica/Troll Antarctica/Vostok Arctic/Longyearbyen Asia/Aden Asia/Almaty Asia/Amman Asia/Anadyr Asia/Aqtau Asia/Aqtobe Asia/Ashgabat Asia/Ashkhabad Asia/Atyrau Asia/Baghdad Asia/Bahrain...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	// GetClientConn returns a specific HTTP/2 connection (usually
    	// a TLS-TCP connection) to an HTTP/2 server. On success, the
    	// returned ClientConn accounts for the upcoming RoundTrip
    	// call, so the caller should not omit it. If the caller needs
    	// to, ClientConn.RoundTrip can be called with a bogus
    	// new(http.Request) to release the stream reservation.
    	GetClientConn(req *Request, addr string) (*http2ClientConn, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/aquasecurity/fanal,v0.0.0-20191031102512-c1c079886da6,h1:B84l/SNXzzcqwgIORAmEv7gs4K4l+DJkdliI6ib/zNw=,7247188e1746360364e7ff77aa0c531df69074c49b23e7f67d65134ca577b0e0
    github.com/aquasecurity/go-dep-parser,v0.0.0-20190819075924-ea223f0ef24b,h1:55Ulc/gvfWm4ylhVaR7MxOwujRjA6et7KhmUbSgUFf4=,73ce01b48b9aa56349d928a27bdd4b77c149541385e645951b2e25f1d6ab5d26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	}
    
    	// In -race mode, we need to call racefuncexit.
    	// Note: This has to happen after we load any heap-allocated results,
    	// otherwise races will be attributed to the caller instead.
    	if s.instrumentEnterExit {
    		s.rtcall(ir.Syms.Racefuncexit, true, nil)
    	}
    
    	results[len(results)-1] = s.mem()
    	m := s.newValue0(ssa.OpMakeResult, s.f.OwnAux.LateExpansionResultType())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"reason": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. doc/go_spec.html

    After they are evaluated, the parameters of the call are passed by value to the function
    and the called function begins execution.
    The return parameters of the function are passed by value
    back to the caller when the function returns.
    </p>
    
    <p>
    Calling a <code>nil</code> function value
    causes a <a href="#Run_time_panics">run-time panic</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/mpeg4-iod-xmt"/>
    
      <!-- http://www.iana.org/assignments/media-types/application/msword -->
      <mime-type type="application/msword">
        <!-- Use DefaultDetector / org.apache.tika.parser.microsoft.POIFSContainerDetector for more reliable detection of OLE2 documents -->
        <alias type="application/vnd.ms-word"/>
        <_comment>Microsoft Word Document</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    		})
    	}
    }
    
    // line returns the line number of the caller, if possible.  This is useful in
    // tests with a large number of cases - when something goes wrong you can find
    // which case more easily.
    func line() string {
    	_, _, line, ok := stdruntime.Caller(1)
    	var s string
    	if ok {
    		s = fmt.Sprintf("%d", line)
    	} else {
    		s = "<??>"
    	}
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

    - When using `kubectl replace` (or the equivalent API call) on a Service, the caller no longer needs to do a read-modify-write cycle to fetch the allocated values for `.spec.clusterIP` and `.spec.ports[].nodePort`.  Instead the API server will automatically carry these forward from the original object when the new object does not...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    				}
    			}
    		})
    	}
    }
    
    // getLine returns the line number of the caller, if possible.  This is useful in
    // tests with a large number of cases - when something goes wrong you can find
    // which case more easily.
    func getLine() int {
    	_, _, line, ok := stdruntime.Caller(1)
    	if ok {
    		return line
    	}
    	return 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top