Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for Everything (0.13 sec)

  1. cmd/admin-handlers-site-replication.go

    	}
    	body, err := json.Marshal(status)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	writeSuccessResponseJSON(w, body)
    }
    
    // SiteReplicationDevNull - everything goes to io.Discard
    // [POST] /minio/admin/v3/site-replication/devnull
    func (a adminAPIHandlers) SiteReplicationDevNull(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	globalSiteNetPerfRX.Connect()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	// favor of AddStartFunc. This is only required if we *must* start something outside of this process.
    	// For example, everything depends on mesh config, so we use it there rather than trying to sequence everything
    	// in AddStartFunc
    	internalStop chan struct{}
    
    	webhookInfo *webhookInfo
    
    	statusReporter *distribution.Reporter
    	statusManager  *status.Manager
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

        private FileSystemLocationSnapshot snapshotOf(File file) {
            return fileSystemAccess.read(file.getAbsolutePath());
        }
    
        private boolean shouldUseFromCache(File original) {
            // Transform everything that has not already been transformed
            return !original.toPath().startsWith(cache.getBaseDir().toPath());
        }
    
        private void markAccessed(File result, File original) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. pilot/pkg/trustbundle/trustbundle_test.go

    	// Check only server 2's trustanchor is present along with meshConfig pem and not server 1 (since it is down)
    	expectTbCount(t, tb, 2, 3*time.Second, "server2(running) trustAnchor not updated in bundle")
    
    	// Test5. remove everything
    	tb.AddMeshConfigUpdate(&meshconfig.MeshConfig{CaCertificates: []*meshconfig.MeshConfig_CertificateData{}})
    	expectTbCount(t, tb, 0, 3*time.Second, "trustAnchor not updated in bundle after meshConfig cleared")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

                .orElseThrow(() -> new IllegalStateException("No describer found for failure: " + failure)); // TODO: a default describer at the end of the list that catches everything instead?
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. hack/golangci.yaml

          path: _test.go$
    
        # TODO(oscr) Remove these excluded directories and fix findings. Due to large amount of findings in different components
        # with different owners it's hard to fix everything in a single pr. This will therefore be done in multiple prs.
        - path: (pkg/volume/*|test/*|azure/*|pkg/cmd/wait*|request/bearertoken/*|metrics/*|filters/*)
          linters:
            - gocritic
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. cmd/signature-v4_test.go

    				"X-Amz-Signature":  []string{"invalidsignature"},
    				"Policy":           []string{"policy"},
    			},
    			expected: ErrSignatureDoesNotMatch,
    		},
    		// (3) It should succeed if everything is correct.
    		{
    			form: http.Header{
    				"X-Amz-Credential": []string{
    					fmt.Sprintf(credentialTemplate, accessKey, now.Format(yyyymmdd), globalMinioDefaultRegion),
    				},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        tasks.register("compileAllProduction") {
            description = "Compile all production source code, usually only main and testFixtures."
            val compileTasks = project.tasks.matching {
                // Currently, we compile everything since the Groovy compiler is not deterministic enough.
                (it is JavaCompile || it is GroovyCompile)
            }
            dependsOn(compileTasks)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

         * {@code true} for {@link JavaPathType#CLASSES} and {@code false} for {@link JavaPathType#MODULES}.
         * If no filter is explicitly set, then the default is a filter accepting everything.
         *
         * @return a filter for the types of path (class-path, module-path, …) accepted by the tool
         */
        @Nullable
        Predicate<PathType> getPathTypeFilter();
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            then:
            _ * componentSelectionRules.rules >> rules({ ComponentSelection selection ->
                selection.reject("Rejecting everything")
            })
            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.rejectedByRule({it.id == c.id})
            1 * selectedComponentResult.rejectedByRule({it.id == b.id})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top