Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,476 for ONCE (0.04 sec)

  1. internal/event/target/mysql.go

    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/go-sql-driver/mysql"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    const (
    	mysqlTableExists = `SELECT 1 FROM %s;`
    	// Some MySQL has a 3072 byte limit on key sizes.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/developingPlugins/externalLibraries/tests/buildEnvironment.out

              \--- org.asciidoctor:asciidoctorj-api:2.5.7
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 07:14:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                                          "inline_string": "%REQ(:AUTHORITY)%"
                                        }
                                      },
                                      "shared_with_upstream": "ONCE"
                                    },
                                    {
                                      "object_key": "envoy.filters.listener.original_dst.remote_ip",
                                      "format_string": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.DependencyGraphVisitor;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * A visitor which batches up all conflicts and reports them all at once at the end of
     * the resolution.
     */
    public class FailOnVersionConflictGraphVisitor implements DependencyGraphVisitor {
    
        private final Set<Conflict> allConflicts = new LinkedHashSet<>();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractGradleBuildConfigurationCacheSmokeTest.groovy

        SmokeTestPreconditions.GradleBuildJvmSpecAvailable
    ])
    abstract class AbstractGradleBuildConfigurationCacheSmokeTest extends AbstractGradleceptionSmokeTest {
        def setup() {
            // Generate Kotlin DSL sources once so they are included as :kotlin-dsl:compileKotlin inputs.
            // TODO:configuration-cache handle generated sources better (see gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts:39)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveAllTester.java

            getList().removeAll(MinimalCollection.of(duplicate)));
        assertFalse(
            "after removeAll(e), a collection should not contain e even "
                + "if it initially contained e more than once.",
            getList().contains(duplicate));
      }
    
      // All other cases are covered by CollectionRemoveAllTester.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveAllTester.java

            getList().removeAll(MinimalCollection.of(duplicate)));
        assertFalse(
            "after removeAll(e), a collection should not contain e even "
                + "if it initially contained e more than once.",
            getList().contains(duplicate));
      }
    
      // All other cases are covered by CollectionRemoveAllTester.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
        private static final Map<String, Throwable> SUFFIXES = new ConcurrentHashMap<>();
    
        /**
         * Registers the given suffix as in use for generated class names.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/crypto/rand/rand_plan9.go

    // reader always returns the full amount asked for, or else it
    // returns an error. The generator is a fast key erasure RNG.
    type reader struct {
    	mu      sync.Mutex
    	seeded  sync.Once
    	seedErr error
    	key     [32]byte
    }
    
    func (r *reader) Read(b []byte) (n int, err error) {
    	r.seeded.Do(func() {
    		t := time.AfterFunc(time.Minute, func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pilot/pkg/xds/adstest.go

    	error     chan error
    	conn      *grpc.ClientConn
    	metadata  model.NodeMetadata
    
    	ID   string
    	Type string
    
    	cancelOnce    sync.Once
    	context       context.Context
    	cancelContext context.CancelFunc
    	timeout       time.Duration
    }
    
    func (a *AdsTest) Cleanup() {
    	// Place in once to avoid race when two callers attempt to cleanup
    	a.cancelOnce.Do(func() {
    		a.cancelContext()
    		_ = a.client.CloseSend()
    		if a.conn != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top