Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 434 for Forked (0.22 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/DefaultResourceLockCoordinationServiceTest.groovy

                }
            }
    
            when:
            beforeState.eachWithIndex { boolean locked, int i -> lock[i].lockedState = locked }
            coordinationService.withStateLock(outerAction)
    
            then:
            afterState.eachWithIndex { boolean locked, int i -> assert lock[i].lockedState == locked }
    
            where:
            beforeState                  | afterState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

        def "allows setting forced modules"() {
            expect:
            strategy.forcedModules.empty
    
            when:
            strategy.force 'org.foo:bar:1.0', 'org.foo:baz:2.0'
    
            then:
            def versions = strategy.forcedModules as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/runtime/os_netbsd.go

    	}
    
    	var uc ucontextt
    	getcontext(unsafe.Pointer(&uc))
    
    	// _UC_SIGMASK does not seem to work here.
    	// It would be nice if _UC_SIGMASK and _UC_STACK
    	// worked so that we could do all the work setting
    	// the sigmask and the stack here, instead of setting
    	// the mask here and the stack in netbsdMstart.
    	// For now do the blocking manually.
    	uc.uc_flags = _UC_SIGMASK | _UC_CPU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @implSpec Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if
         * called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
         *
         * @return The files of this configuration.
         */
        Set<File> resolve();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationFactory.java

                    role
            );
            instance.addMutationValidator(rootComponentMetadataBuilder.getValidator());
            return instance;
        }
    
        /**
         * Creates a new locked resolvable configuration instance.
         */
        DefaultResolvableConfiguration createResolvable(
            String name,
            ConfigurationsProvider configurationsProvider,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/fetch.go

    				unrecoverableErr = err
    				return err
    			}
    		}
    		return err
    	})
    	if err != nil {
    		return err
    	}
    
    	// Double-check that the paths within the zip file are well-formed.
    	//
    	// TODO(bcmills): There is a similar check within the Unzip function. Can we eliminate one?
    	fi, err := f.Stat()
    	if err != nil {
    		return err
    	}
    	z, err := zip.NewReader(f, fi.Size())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    				sum := c.add(uint64(n))
    				debugPrintf("Add %q += %d: count=%d\n", c.name, n, sum)
    			}
    			c.releaseReader(state)
    			return
    
    		case state.locked():
    			if !c.state.update(&state, state.addExtra(uint64(n))) {
    				continue
    			}
    			debugPrintf("Add %q += %d: locked extra=%d\n", c.name, n, state.extra())
    			return
    
    		case !state.havePtr():
    			if !c.state.update(&state, state.addExtra(uint64(n)).setLocked()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/manager.go

    				}
    				pluginName := resourceHandle.DriverName
    				batches[pluginName] = append(batches[pluginName], claim)
    			}
    
    			return nil
    		})
    		if err != nil {
    			return fmt.Errorf("locked cache operation: %w", err)
    		}
    	}
    
    	// Call NodePrepareResources for all claims in each batch.
    	// If there is any error, processing gets aborted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    LogicalResult MarkUncompilableOps(
        const Dialect* tf_dialect, Block* block,
        llvm::DenseSet<OperationName>& supported_ops) {
      // Automatically marked ops for outside compilation have
      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
      // have an increasing counteri for the attribute value.  Therefore there is no
      // collision in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top