Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 747 for mreply (0.19 sec)

  1. cmd/object-api-datatypes.go

    	if o.IsLatest {
    		ts.NumObjects = 1
    	}
    	return ts
    }
    
    // ToObjectInfo converts a replication object info to a partial ObjectInfo
    // do not rely on this function to give you correct ObjectInfo, this
    // function is merely and optimization.
    func (ri ReplicateObjectInfo) ToObjectInfo() ObjectInfo {
    	return ObjectInfo{
    		Name:                       ri.Name,
    		Bucket:                     ri.Bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java

    public interface LocalRepositoryManager extends Service {
    
        /**
         * Gets the relative path for a locally installed artifact.
         * Note that the artifact need not actually exist yet at
         * the returned location, the path merely indicates where
         * the artifact would eventually be stored.
         *
         * @param session The session to use, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 08 09:10:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_limit_test.go

    	return []testcase{
    		{
    			name:     "3MB of deeply nested slices",
    			checkErr: successOrMaxDepthError,
    			data:     []byte(`{"a":` + strings.Repeat(`[`, 3*1024*1024/2) + strings.Repeat(`]`, 3*1024*1024/2) + "}"),
    		},
    		{
    			name:     "3MB of unbalanced nested slices",
    			checkErr: nonNilError,
    			data:     []byte(`{"a":` + strings.Repeat(`[`, 3*1024*1024)),
    		},
    		{
    			name:     "3MB of deeply nested maps",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  4. src/runtime/race/race.go

    // license that can be found in the LICENSE file.
    
    //go:build race && ((linux && (amd64 || arm64 || ppc64le || s390x)) || ((freebsd || netbsd || openbsd || windows) && amd64))
    
    package race
    
    // This file merely ensures that we link in runtime/cgo in race build,
    // this in turn ensures that runtime uses pthread_create to create threads.
    // The prebuilt race runtime lives in race_GOOS_GOARCH.syso.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 868 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/etag.go

    	quotedHash := strconv.Quote(hash)
    	w.Header().Set("ETag", quotedHash)
    	w.Header().Set("Vary", "Accept")
    	w.Header().Set("Cache-Control", "public")
    
    	// If Request includes If-None-Match and matches hash, reply with 304
    	// Otherwise, we delegate to the handler for actual content
    	//
    	// According to documentation, An Etag within an If-None-Match
    	// header will be enclosed within double quotes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. internal/s3select/select_test.go

    			if err != nil {
    				t.Error(err)
    				return
    			}
    			gotS := strings.TrimSpace(string(got))
    			if !reflect.DeepEqual(gotS, testCase.wantResult) {
    				t.Errorf("received response does not match with expected reply. Query: %s\ngot: %s\nwant:%s", testCase.query, gotS, testCase.wantResult)
    			}
    		})
    		t.Run("simd-"+testCase.name, func(t *testing.T) {
    			if !simdjson.SupportedCPU() {
    				t.Skip("No CPU support")
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationProgressEventEmitter.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Specialised event emitter for cross-cutting type progress events not tied more deeply to operation execution.
     */
    @ServiceScope(Global.class)
    public interface BuildOperationProgressEventEmitter {
        void emit(OperationIdentifier operationIdentifier, long timestamp, @Nullable Object details);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. SECURITY.md

    issue (DoS, authentication bypass, information disclose, ...) and the assumptions you're making (e.g. do
    you need access credentials for a successful exploit).
    
    If you have not received a reply to your email within 48 hours or you have not heard from the security team
    for the past five days please contact the security team directly:
    
    - Primary security coordinator: ******@****.***
    - Secondary coordinator: ******@****.***
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/ReplayingTypeValidationContext.java

                problemSpec.execute(builder);
                builder.parentProperty(ownerProperty);
            }));
        }
    
        public void replay(@Nullable String ownerProperty, TypeValidationContext target) {
            problems.forEach(problem -> problem.accept(ownerProperty, target));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue13337.go

    // compile
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 13337: The Go compiler limited how deeply embedded types
    // were searched for promoted fields and methods.
    
    package s
    
    type S0 struct{ f int }
    func (S0) m() {}
    
    type S1 struct{ S0 }
    type S2 struct{ S1 }
    type S3 struct{ S2 }
    type S4 struct{ S3 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 653 bytes
    - Viewed (0)
Back to top