Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for preamble (0.13 sec)

  1. internal/config/cache/remote.go

    }
    
    // WriteHeaders writes the response headers for conditional requests
    func (oi ObjectInfo) WriteHeaders(w http.ResponseWriter, preamble, statusCode func()) {
    	preamble()
    
    	if !oi.ModTime.IsZero() {
    		w.Header().Set(xhttp.LastModified, oi.ModTime.UTC().Format(http.TimeFormat))
    	}
    
    	if oi.ETag != "" {
    		w.Header()[xhttp.ETag] = []string{"\"" + oi.ETag + "\""}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. cmd/genman/gen_kube_man.go

    		for _, c := range kubeadm.Commands() {
    			genMarkdown(c, "kubeadm", outDir)
    		}
    	default:
    		fmt.Fprintf(os.Stderr, "Module %s is not supported", module)
    		os.Exit(1)
    	}
    }
    
    func preamble(out *bytes.Buffer, name, short, long string) {
    	out.WriteString(`% KUBERNETES(1) kubernetes User Manuals
    % Eric Paris
    % Jan 2015
    # NAME
    `)
    	fmt.Fprintf(out, "%s \\- %s\n\n", name, short)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/runtime/textflag.h

    #define NOPROF	1
    // It is ok for the linker to get multiple of these symbols. It will
    // pick one of the duplicates to use.
    #define DUPOK	2
    // Don't insert stack check preamble.
    #define NOSPLIT	4
    // Put this data in a read-only section.
    #define RODATA	8
    // This data contains no pointers.
    #define NOPTR	16
    // This is a wrapper function and should not count as disabling 'recover'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/ast.go

    						// but we double check here just to be sure.
    						fatalf("internal error: ParseGo: abspath contains unexpected newline character: %q", abspath)
    					}
    					f.Preamble += fmt.Sprintf("#line %d %q\n", sourceLine(cg), abspath)
    					f.Preamble += commentText(cg) + "\n"
    					f.Preamble += "#line 1 \"cgo-generated-wrapper\"\n"
    				}
    			}
    
    		case *ast.FuncDecl:
    			// Also, reject attempts to declare methods on C.T or *C.T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    as C.stdout, or functions such as C.putchar.
    
    If the import of "C" is immediately preceded by a comment, that
    comment, called the preamble, is used as a header when compiling
    the C parts of the package. For example:
    
    	// #include <stdio.h>
    	// #include <errno.h>
    	import "C"
    
    The preamble may contain any C code, including function and variable
    declarations and definitions. These may then be referred to from Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/textflag.go

    	//
    	// Deprecated: Not implemented, do not use.
    	NOPROF = 1
    
    	// It is ok for the linker to get multiple of these symbols. It will
    	// pick one of the duplicates to use.
    	DUPOK = 2
    
    	// Don't insert stack check preamble.
    	NOSPLIT = 4
    
    	// Put this data in a read-only section.
    	RODATA = 8
    
    	// This data contains no pointers.
    	NOPTR = 16
    
    	// This is a wrapper function and should not count as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

            .writeUtf8("--")
            .writeUtf8(boundary)
            .readByteString()
    
        /**
         * This delimiter typically precedes all subsequent parts. It may also precede the first part
         * if the body contains a preamble.
         */
        private val crlfDashDashBoundary =
          Buffer()
            .writeUtf8("\r\n--")
            .writeUtf8(boundary)
            .readByteString()
    
        private var partCount = 0
        private var closed = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/NtlmMessage.java

    import java.io.IOException;
    
    import jcifs.SmbConstants;
    
    
    /**
     * Abstract superclass for all NTLMSSP messages.
     */
    public abstract class NtlmMessage implements NtlmFlags {
    
        /**
         * The NTLMSSP "preamble".
         */
        protected static final byte[] NTLMSSP_SIGNATURE = new byte[] {
            (byte) 'N', (byte) 'T', (byte) 'L', (byte) 'M', (byte) 'S', (byte) 'S', (byte) 'P', (byte) 0
        };
    
        /**
         * NTLM version
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  9. src/runtime/unsafepoint_test.go

    		t.Errorf("no interruptible instructions")
    	}
    	// Note that there are other instructions marked unpreemptible besides
    	// just the ones required by the write barrier. Those include possibly
    	// the preamble and postamble, as well as bleeding out from the
    	// write barrier proper into adjacent instructions (in both directions).
    	// Hopefully we can clean up the latter at some point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 20:24:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/internal/coverage/decodemeta/decode.go

    	}
    
    	// Seek to the correct location to read the function.
    	floc := int64(foff)
    	if _, err := d.r.Seek(floc, io.SeekStart); err != nil {
    		return err
    	}
    
    	// Preamble containing number of units, file, and function.
    	numUnits := uint32(d.r.ReadULEB128())
    	fnameidx := uint32(d.r.ReadULEB128())
    	fileidx := uint32(d.r.ReadULEB128())
    
    	f.Srcfile = d.strtab.Get(fileidx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top