Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sig2 (0.12 sec)

  1. go.sum

    sigs.k8s.io/controller-runtime v0.18.3 h1:B5Wmmo8WMWK7izei+2LlXLVDGzMwAHBNLX68lwtlSR4=
    sigs.k8s.io/controller-runtime v0.18.3/go.mod h1:TVoGrfdpbA9VRFaRnKgk9P5/atA0pMwq+f+msb9M8Sg=
    sigs.k8s.io/controller-tools v0.3.0/go.mod h1:enhtKGfxZD1GFEoMgP8Fdbu+uKQ/cq1/WGJhdVChfvI=
    sigs.k8s.io/gateway-api v1.1.0 h1:DsLDXCi6jR+Xz8/xd0Z1PYl2Pn0TyaFMOPPZIj4inDM=
    sigs.k8s.io/gateway-api v1.1.0/go.mod h1:ZH4lHrL2sDi0FHZ9jjneb8kKnGzFWyrTya35sWUTrRs=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "Sign":
    			z.Sign, err = dc.ReadBytes(z.Sign)
    			if err != nil {
    				err = msgp.WrapError(err, "Sign")
    				return
    			}
    		case "OldDataDir":
    			z.OldDataDir, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "OldDataDir")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    # this, but PyYAML isn't shipped by default, and *rant rant rant ... SIGH*
    function yaml-quote {
      echo "${@:-}" | sed -e "s/'/''/g;s/^/'/i;s/$/'/i"
    }
    
    # Writes the cluster location into a temporary file.
    # Assumed vars
    #   ZONE
    function write-cluster-location {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // during the build. To embed spaces in an element in the list, surround
    // it with either single or double quotes. The argument list may be
    // preceded by a package pattern and an equal sign, which restricts
    // the use of that argument list to the building of packages matching
    // that pattern (see 'go help packages' for a description of package
    // patterns). Without a pattern, the argument list applies only to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

         [[ "${ENABLE_CLUSTER_LOGGING:-}" == "true" ]]; then
        echo "fluentd-elasticsearch addon is no longer included here. Terminate cluster initialization."
        echo "The addon can be installed from https://github.com/kubernetes-sigs/instrumentation-addons"
        exit 1
      fi
      if [[ "${ENABLE_NODE_LOGGING:-}" == "true" ]] && \
         [[ "${LOGGING_DESTINATION:-}" == "gcp" ]]; then
        setup-addon-manifests "addons" "fluentd-gcp"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			if rt == objabi.R_PEIMAGEOFF {
    				// The R_PEIMAGEOFF offset is a RVA, so subtract
    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    			// fail at runtime. See https://golang.org/issue/7980.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    		if testCase.metadataGarbage {
    			reqV2.Header.Set("X-Amz-Metadata-Directive", "Unknown")
    		}
    
    		err = signRequestV2(reqV2, testCase.accessKey, testCase.secretKey)
    		if err != nil {
    			t.Fatalf("Failed to V2 Sign the HTTP request: %v.", err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler.
    		apiRouter.ServeHTTP(recV2, reqV2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top