Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 385 for anyone (0.16 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantToDependentsMappingMergerTest.groovy

            mapping.getConstantDependentsForClass("c").privateDependentClasses.isEmpty()
    
        }
    
        def "removes all classes that were visited but are not dependents anymore from mapping on merge"() {
            given:
            ConstantToDependentsMapping oldMapping = ConstantToDependentsMapping.builder()
                .addAccessibleDependent("a", "1")
                .addAccessibleDependent("a", "2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

            });
    
            // This is a workaround for strange behavior from the Kotlin plugin.
            // It seems Kotlin is not doing this anymore in the newest version, so we should re-evaluate
            // whether we need withDependencies anymore.
            //
            // The Kotlin plugin attempts to look at the declared dependencies to know if it needs to add its own dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/toolexec.txt

    #
    # As such, TOOLEXEC_IMPORTPATH must see the same strings, to be able to uniquely
    # identify each package being built as reported by 'go list -f {{.ImportPath}}'.
    # Note that these are not really "import paths" anymore, but that naming is
    # consistent with 'go list -json' at least.
    
    go test -toolexec=$PWD/mytool
    
    stderr -count=2 '^# test/main\.test$'
    stderr -count=1 '^compile'${GOEXE}' TOOLEXEC_IMPORTPATH="test/main\.test"$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. src/os/exec_unix.go

    		// racing with Wait, or a double Release.
    		p.handlePersistentRelease(statusReleased)
    	case modePID:
    		// Just mark the PID unusable.
    		p.pidDeactivate(statusReleased)
    	}
    	// no need for a finalizer anymore
    	runtime.SetFinalizer(p, nil)
    	return nil
    }
    
    func findProcess(pid int) (p *Process, err error) {
    	h, err := pidfdFind(pid)
    	if err == ErrProcessDone {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. cmd/bucket-quota.go

    		return quotaCfg, err
    	}
    	if !quotaCfg.IsValid() {
    		if quotaCfg.Type == "fifo" {
    			internalLogIf(GlobalContext, errors.New("Detected older 'fifo' quota config, 'fifo' feature is removed and not supported anymore. Please clear your quota configs using 'mc admin bucket quota alias/bucket --clear' and use 'mc ilm add' for expiration of objects"), logger.WarningKind)
    			return quotaCfg, fmt.Errorf("invalid quota type 'fifo'")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. buildscripts/verify-healing.sh

    		done
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	sleep 1
    	if pgrep minio; then
    		# forcibly killing, to proceed further properly.
    		if ! pkill -9 minio; then
    			echo "no minio process running anymore, proceed."
    		fi
    	fi
    }
    
    function check_heal() {
    	if ! grep -q 'Status:' ${WORK_DIR}/dist-minio-*.log; then
    		return 1
    	fi
    
    	for ((i = 0; i < 20; i++)); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/util/oom/oom_linux.go

    	for i := 0; i < maxTries; i++ {
    		continueAdjusting := false
    		pidList, err := oomAdjuster.pidLister(cgroupName)
    		if err != nil {
    			if os.IsNotExist(err) {
    				// Nothing to do since the container doesn't exist anymore.
    				return os.ErrNotExist
    			}
    			continueAdjusting = true
    			klog.V(10).Infof("Error getting process list for cgroup %s: %+v", cgroupName, err)
    		} else if len(pidList) == 0 {
    			klog.V(10).Infof("Pid list is empty")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/watch/streamwatcher.go

    		// goroutine/channel, but impossible for them to remove it,
    		// so nonbuffered is better.
    		result: make(chan Event),
    		// If the watcher is externally stopped there is no receiver anymore
    		// and the send operations on the result channel, especially the
    		// error reporting might block forever.
    		// Therefore a dedicated stop channel is used to resolve this blocking.
    		done: make(chan struct{}),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 13:42:59 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery();
            boolQueryBuilder
                    .must(QueryBuilders.rangeQuery(FieldNames.TIMESTAMP).lt(time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli()));
    
            boolQueryBuilder.must(QueryBuilders.termQuery(FieldNames.KINDS, SuggestItem.Kind.DOCUMENT.toString()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. src/math/big/floatconv.go

    			panic("unexpected mantissa base")
    		}
    		// fcount consumed - not needed anymore
    	}
    
    	// take actual exponent into account
    	switch ebase {
    	case 10:
    		exp5 += exp
    		fallthrough // see fallthrough above
    	case 2:
    		exp2 += exp
    	default:
    		panic("unexpected exponent base")
    	}
    	// exp consumed - not needed anymore
    
    	// apply 2**exp2
    	if MinExp <= exp2 && exp2 <= MaxExp {
    		z.prec = prec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top