Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,762 for logical (0.15 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. okhttp/src/main/kotlin/okhttp3/Connection.kt

     * currently carrying zero streams is an idle stream. We keep it alive because reusing an existing
     * connection is typically faster than establishing a new one.
     *
     * When a single logical call requires multiple streams due to redirects or authorization
     * challenges, we prefer to use the same physical connection for all streams in the sequence. There
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/runtime/debug.go

    		return ret
    	}
    
    	stw := stopTheWorldGC(stwGOMAXPROCS)
    
    	// newprocs will be processed by startTheWorld
    	newprocs = int32(n)
    
    	startTheWorldGC(stw)
    	return ret
    }
    
    // NumCPU returns the number of logical CPUs usable by the current process.
    //
    // The set of available CPUs is checked by querying the operating system
    // at process startup. Changes to operating system CPU allocation after
    // process startup are not reflected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	// 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).
    	// - If yes, increment both local and remote compact_time, and do a compaction.
    	// - If not, set local to 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)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FileBackedObjectHolderTest.groovy

            r = cache.maybeUpdate { "b" }
    
            then:
            1 * serializer.read(_)
    
            and:
            1 * serializer.write(_, "b")
    
            and:
            r == "b"
    
            when: // same logical value, but different object
            r = cache.maybeUpdate { new String("b") }
    
            then:
            1 * serializer.read(_)
    
            and:
            0 * serializer.write(_, _)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/runtime/symtabinl.go

    		index: pcdatavalue1(u.f, abi.PCDATA_InlTreeIndex, pc, false),
    	}
    }
    
    func (uf inlineFrame) valid() bool {
    	return uf.pc != 0
    }
    
    // next returns the frame representing uf's logical caller.
    func (u *inlineUnwinder) next(uf inlineFrame) inlineFrame {
    	if uf.index < 0 {
    		uf.pc = 0
    		return uf
    	}
    	parentPc := u.inlTree[uf.index].parentPc
    	return u.resolveInternal(u.f.entry() + uintptr(parentPc))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/networking/v1/generated.proto

    // This type is beta-level in 1.8
    message NetworkPolicyEgressRule {
      // ports is a list of destination ports for outgoing traffic.
      // Each item in this list is combined using a logical OR. If this field is
      // empty or missing, this rule matches all ports (traffic not restricted by port).
      // If this field is present and contains at least one item, then this rule allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top