Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,147 for apiJar (0.21 sec)

  1. src/go/doc/testdata/e.0.golden

    		// contains filtered or unexported fields
    	}
    
    	// T2.M should appear as method of T2. 
    	func (T2) M()
    
    	// T3 has only M as top-level method. 
    	type T3 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T3.M should appear as method of T3. 
    	func (T3) M()
    
    	// 
    	type T4 struct{}
    
    	// T4.M should appear as method of T5 only if AllMethods is set. 
    	func (*T4) M()
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

         * Returns the HTML text to appear in the main frame title.
         */
        @Nullable @Optional @Input
        public String getDocTitle() {
            return docTitle;
        }
    
        /**
         * Sets the HTML text to appear in the main frame title.
         */
        public void setDocTitle(@Nullable String docTitle) {
            this.docTitle = docTitle;
        }
    
        /**
         * Returns the HTML text to appear in the header for each page.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

         */
        IDENTIFIER,
        /**
         * A macro function argument list. These appear in the body of a directive or as the arguments to a {@link #MACRO_FUNCTION} eg {@code #include ABC(a b c)}.
         */
        ARGS_LIST,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    			break
    		}
    		if err != nil {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    		if maxParts <= 0 {
    			apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    			apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, multipart.ErrMessageTooLarge)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. cmd/healthcheck-handler.go

    		return
    	}
    
    	if int(globalHTTPStats.loadRequestsInQueue()) > globalAPIConfig.getRequestsPoolCapacity() {
    		apiErr := getAPIError(ErrBusy)
    		switch r.Method {
    		case http.MethodHead:
    			writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone)
    		case http.MethodGet:
    			writeErrorResponse(r.Context(), w, apiErr, r.URL)
    		}
    		return
    	}
    
    	// Verify if KMS is reachable if its configured
    	if GlobalKMS != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/d.0.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  7. src/go/doc/testdata/d.2.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  8. src/go/doc/testdata/d.1.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  9. src/go/doc/testdata/issue13742.0.golden

    // 
    PACKAGE issue13742
    
    IMPORTPATH
    	testdata/issue13742
    
    IMPORTS
    	go/ast
    
    FILENAMES
    	testdata/issue13742.go
    
    FUNCTIONS
    	// Both F0 and G0 should appear as functions. 
    	func F0(Node)
    
    	// Both F1 and G1 should appear as functions. 
    	func F1(ast.Node)
    
    	// 
    	func G0() Node
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 04:10:51 UTC 2016
    - 299 bytes
    - Viewed (0)
  10. src/go/doc/testdata/issue13742.1.golden

    // 
    PACKAGE issue13742
    
    IMPORTPATH
    	testdata/issue13742
    
    IMPORTS
    	go/ast
    
    FILENAMES
    	testdata/issue13742.go
    
    FUNCTIONS
    	// Both F0 and G0 should appear as functions. 
    	func F0(Node)
    
    	// Both F1 and G1 should appear as functions. 
    	func F1(ast.Node)
    
    	// 
    	func G0() Node
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 04:10:51 UTC 2016
    - 299 bytes
    - Viewed (0)
Back to top