Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for LOGICAL (0.09 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * after which the objects are no longer retained.
     *
     * Consideration should be given to the package space of the details and result types.
     * They should be housed in a logical package space, which may not be the same as the class
     * that executes the actual operation being represented, as often that is internal detail that may change.
     *
     * @param <D> the type of details object for the operation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane_test.go

    )
    
    func TestMarkControlPlane(t *testing.T) {
    	// Note: this test takes advantage of the deterministic marshalling of
    	// JSON provided by strategicpatch so that "expectedPatch" can use a
    	// string equality test instead of a logical JSON equality test. That
    	// will need to change if strategicpatch's behavior changes in the
    	// future.
    	tests := []struct {
    		name           string
    		existingLabels []string
    		existingTaints []v1.Taint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 14:22:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

     *
     * Currently, the only audience of these events is the build scan plugin.
     * It is concerned with recreating the <i>plain</i> console for an invocation,
     * and associating logging output with tasks, projects, and other logical entities.
     * It does not attempt to emulate the rich console.
     *
     * This solution has some quirks due to how the console output subsystem in Gradle has evolved.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	"k8s.io/client-go/kubernetes"
    	"k8s.io/component-base/featuregate"
    )
    
    // RecommendedOptions contains the recommended options for running an API server.
    // If you add something to this list, it should be in a logical grouping.
    // Each of them can be nil to leave the feature unconfigured on ApplyTo.
    type RecommendedOptions struct {
    	Etcd           *EtcdOptions
    	SecureServing  *SecureServingOptionsWithLoopback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	// Technical definitions:
    	// We have a special key in etcd defined as *compactRevKey*.
    	// compactRevKey's value will be set to the string of last compacted revision.
    	// compactRevKey's version will be used as logical time for comparison. THe version is referred as compact time.
    	// Initially, because the key doesn't exist, the compact time (version) is 0.
    	//
    	// Algorithm:
    	// - Compare to see if (local compact_time) = (remote compact_time).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. architecture/standards/0004-use-a-platform-architecture.md

    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    A Gradle platform is a logical distribution that provides support for a specific kind of automation.
    A typical platform builds on other platforms in order to add more capabilities, for example, to add support for a particular language.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

            USER_CODE_DIRECT,
    
            /**
             * The key characteristic is that the trace to the usage DOES NOT indicate the offending user code,
             * but the usage happens during runtime and may be associated to a logical entity (e.g. task, plugin).
             *
             * The association between a usage and entity is not modelled by the usage,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/runtime/trace/trace.go

    //	   trace.WithRegion(ctx, "extractCoffee", extractCoffee)
    //	   trace.WithRegion(ctx, "mixMilkCoffee", mixMilkCoffee)
    //	})
    //
    // A task is a higher-level component that aids tracing of logical
    // operations such as an RPC request, an HTTP request, or an
    // interesting local operation which may require multiple goroutines
    // working together. Since tasks can involve multiple goroutines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. src/runtime/race/race_test.go

    	// There are two sources of flakiness:
    	// 1. Some tests rely on particular execution order.
    	//    If the order is different, race does not happen at all.
    	// 2. Ironically, ThreadSanitizer runtime contains a logical race condition
    	//    that can lead to false negatives if racy accesses happen literally at the same time.
    	// Tests used to work reliably in the good old days of GOMAXPROCS=1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    + Create a topic branch from where you want to base your work (this is usually the master branch).
      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
Back to top