Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,147 for apiJar (0.17 sec)

  1. cmd/object-lambda-handlers.go

    		apiErr := &APIError{
    			HTTPStatusCode: StatusCode(status),
    			Description:    resp.Header.Get(xhttp.AmzFwdErrorMessage),
    			Code:           resp.Header.Get(xhttp.AmzFwdErrorCode),
    		}
    		if apiErr.HTTPStatusCode == http.StatusOK {
    			return nil
    		}
    		return apiErr
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. cmd/object-api-options.go

    			),
    		}
    
    		writeResponse(w, apiErr.HTTPStatusCode, encodeResponse(errResp), mimeXML)
    	}()
    
    	opts, err = getOpts(ctx, r, bucket, object)
    	if err != nil {
    		switch vErr := err.(type) {
    		case InvalidVersionID:
    			apiErr = toAPIError(ctx, vErr)
    			argumentName = strings.ToLower("versionId")
    			argumentValue = vErr.VersionID
    		default:
    			apiErr = toAPIError(ctx, vErr)
    		}
    		valid = false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/go/doc/testdata/d1.go

    package d
    
    // C2 should be third.
    const C2 = 2
    
    // V2 should be third.
    var V2 int
    
    // CBx constants should appear before CAx constants.
    const (
    	CB2 = iota // before CB1
    	CB1        // before CB0
    	CB0        // at end
    )
    
    // VBx variables should appear before VAx variables.
    var (
    	VB2 int // before VB1
    	VB1 int // before VB0
    	VB0 int // at end
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

     */
    public enum JavadocOutputLevel {
        /**
         * -verbose
         *
         * Provides more detailed messages while javadoc is running. Without the verbose option,
         * messages appear for loading the source files, generating the documentation (one message per source file), and sorting.
         * The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. releasenotes/notes/gateway-naming.yaml

    # If issue is not in the current repo, specify its full URL instead.
    issue:
      - https://github.com/istio/istio/pull/43103
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Improved** Gateway naming conventions to be concatenation of `Name` and `GatewayClassName`. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 06 14:56:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_pgo_auto.txt

    stderr 'compile.*nopgo.go'
    ! stderr 'compile.*-pgoprofile'
    
    # check that pgo doesn't appear in build info
    ! stderr 'build\\t-pgo='
    
    # -pgo=off should turn off PGO.
    go build -a -n -pgo=off -o a1.exe ./a/a1
    stderr 'compile.*a1.go'
    ! stderr 'compile.*-pgoprofile'
    
    # check that pgo doesn't appear in build info
    ! stderr 'build\\t-pgo='
    
    -- go.mod --
    module test
    go 1.20
    -- a/a1/a1.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. releasenotes/template.yaml

    # If issue is not in the current repo, specify its full URL instead.
    issue:
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    
    # upgradeNotes is a markdown listing of any changes that will affect the upgrade
    # process. This will appear in the release notes.
    upgradeNotes:
      - title:
        content:
    
    # docs is a list of related docs to the change.
    docs:
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/go/doc/testdata/b.go

    func uintFactory() uint {}
    
    // Associated with comparable type if AllDecls is set.
    func ComparableFactory() comparable {}
    
    // Should only appear if AllDecls is set.
    type uint struct{} // overrides a predeclared type uint
    
    // Should only appear if AllDecls is set.
    type comparable struct{} // overrides a predeclared type comparable
    
    // ----------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_std.txt

    # boundary.
    
    go list $GOROOT/src/...
    stdout ^bytes$
    ! stdout ^builtin$
    ! stdout ^cmd/
    ! stdout ^vendor/
    ! stdout ^golang\.org/x/
    
    
    # Vendored dependencies should appear with their 'vendor/' paths in std (they're
    # in GOROOT/src, but not in the 'std' module following the usual module-boundary
    # rules).
    
    cd $GOROOT/src
    env GOWORK=off
    
    go list std
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/Assembler.java

            }
            // ml/ml64 have position sensitive arguments,
            // e.g., /Fo must appear before /c and /c must appear before the source file.
    
            return Iterables.concat(outputArgs, genericArgs, sourceArgs);
        }
    
        private static class AssemblerArgsTransformer extends VisualCppCompilerArgsTransformer<AssembleSpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top