Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 595 for lockedm (0.12 sec)

  1. src/runtime/chan.go

    }
    
    // send processes a send operation on an empty channel c.
    // The value ep sent by the sender is copied to the receiver sg.
    // The receiver is then woken up to go on its merry way.
    // Channel c must be empty and locked.  send unlocks c with unlockf.
    // sg must already be dequeued from c.
    // ep must be non-nil and point to the heap or the caller's stack.
    func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

        }
        // endregion Warnings
    
        private void assertUsageLockedFailure(String configurationName, String roleName = null) {
            String suffix = roleName ? "as it was locked upon creation to the role: '$roleName'." : "as it has been locked."
            failure.assertHasCause("Cannot change the allowed usage of configuration ':$configurationName', $suffix")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. releasenotes/notes/ssh-iptables.yaml

    upgradeNotes:
    - title: Port 22 iptables capture changes
      content: |
        In previous versions, port 22 was excluded from iptables capture. This mitigates risk of getting locked out of a VM
        when using Istio on VMs. This configuration was hardcoded into the iptables logic, meaning there was no way to
        capture traffic on port 22.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/NoOpDependencyLockingProviderTest.groovy

    import static java.util.Collections.emptySet
    
    class NoOpDependencyLockingProviderTest extends Specification {
    
        @Subject
        def provider = NoOpDependencyLockingProvider.instance
    
        def 'does not find locked dependencies'() {
            when:
            def result = provider.loadLockState('conf', Describables.of("foo"))
    
            then:
            !result.mustValidateLockState()
        }
    
        def 'does nothing on persist'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

        public DependencyLockingGraphVisitor(String lockId, DisplayName lockOwner, DependencyLockingProvider dependencyLockingProvider) {
            this.lockId = lockId;
            this.lockOwner = lockOwner;
            this.dependencyLockingProvider = dependencyLockingProvider;
        }
    
        @Override
        public void start(RootGraphNode root) {
            dependencyLockingState = dependencyLockingProvider.loadLockState(lockId, lockOwner);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-syscall-steal-proc-sitting-in-syscall.go

    	g := t.Generation(1)
    
    	// Steal proc from a goroutine that's been blocked
    	// in a syscall the entire generation.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcSyscallAbandoned)
    	b0.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(1))
    
    	// Status event for a goroutine blocked in a syscall for the entire generation.
    	bz := g.Batch(trace.NoThread, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 946 bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

        @Deprecated
        void setBlacklisted(boolean blackListed);
    
        /**
         * @return whether the repository is blocked
         * @since 3.8.1
         **/
        boolean isBlocked();
    
        /**
         * @param blocked block the repository?
         * @since 3.8.1
         **/
        void setBlocked(boolean blocked);
    
        //
        // New interface methods for the repository system.
        //
        /**
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 23 17:14:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

            } else {
                this.mirroredRepositories = Collections.emptyList();
            }
        }
    
        public boolean isBlocked() {
            return blocked;
        }
    
        public void setBlocked(boolean blocked) {
            this.blocked = blocked;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/variable_info_util.h

    // given that *all* inputs are in `inputs`. The input indices for the resource
    // variable inputs are in `variable_indices`.
    //
    // When using the VariableInfos generated by this version, all variables would
    // be writer-locked.
    Status GetVariableInfosFromInputs(ResourceMgr* rm, DeviceBase* dev,
                                      absl::Span<const Tensor* const> inputs,
                                      absl::Span<const int> variable_indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

            then:
            lockfileFixture.verifyLockfile('lockedConf', ['org:foo:1.0'])
    
            and:
            succeeds 'copyFiles'
    
        }
    
        def "fails when a force overwrites a locked version"() {
            given:
            mavenRepo.module('org', 'test', '1.0').publish()
            mavenRepo.module('org', 'test', '1.1').publish()
    
            lockfileFixture.createLockfile('lockedConf', ['org:test:1.1'], false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top