Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 645 for earliest (0.16 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

                }
            """
    
            impl.snapshot { run("impl:${language.compileTaskName}") }
    
            when:
            //add new jar with duplicate class that will be earlier on the classpath (project dependencies are earlier on classpath)
            source api: ["package org.junit; public class Assert {}"]
            file("impl/build.gradle") << "dependencies { implementation project(':api') }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. pkg/registry/networking/servicecidr/strategy.go

    	newServiceCIDR := new.(*networking.ServiceCIDR)
    	oldServiceCIDR := old.(*networking.ServiceCIDR)
    	errList := validation.ValidateServiceCIDR(newServiceCIDR)
    	errList = append(errList, validation.ValidateServiceCIDRUpdate(newServiceCIDR, oldServiceCIDR)...)
    	return errList
    }
    
    // AllowUnconditionalUpdate is the default update policy for ServiceCIDR objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    		},
    		[]int{
    			0,
    			0,
    			1,
    			1,
    			2,
    		},
    	}
    
    	if len(testCases.ErrList) != len(testCases.NumExpectedErrs) {
    		t.Errorf("Mismatch: length of NumExpectedErrs does not match length of ErrList")
    	}
    	for i, tc := range testCases.ErrList {
    		agg := tc.ToAggregate()
    		numErrs := 0
    
    		if agg != nil {
    			numErrs = len(agg.Errors())
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            final List<EsAccessResult> arList = ((EsDataService) dataService).getAccessResultList(cb);
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (!arList.isEmpty()) {
                final long commitMarginTime = fessConfig.getIndexerWebfsCommitMarginTimeAsInteger().longValue();
                for (final AccessResult<?> ar : arList.toArray(new AccessResult[arList.size()])) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. pkg/util/procfs/procfs_linux.go

    	}
    	pids := getPids(re)
    	if len(pids) == 0 {
    		return fmt.Errorf("unable to fetch pids for process name : %q", name)
    	}
    	errList := []error{}
    	for _, pid := range pids {
    		if err = syscall.Kill(pid, sig); err != nil {
    			errList = append(errList, err)
    		}
    	}
    	return utilerrors.NewAggregate(errList)
    }
    
    // PidOf finds process(es) with a specified name (regexp match)
    // and return their pid(s).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/testing_test.go

            import  /* ERROR "8:9" */  // indented with blanks
    `
    	m := CommentMap(strings.NewReader(src), regexp.MustCompile("^ ERROR "))
    	found := 0 // number of errors found
    	for line, errlist := range m {
    		for _, err := range errlist {
    			if err.Pos.Line() != line {
    				t.Errorf("%v: got map line %d; want %d", err, err.Pos.Line(), line)
    				continue
    			}
    			// err.Pos.Line() == line
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_openbsd_arm64.go

    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 906 bytes
    - Viewed (0)
  8. src/syscall/syscall_openbsd_ppc64.go

    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 906 bytes
    - Viewed (0)
  9. src/syscall/syscall_openbsd_riscv64.go

    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 906 bytes
    - Viewed (0)
  10. src/syscall/syscall_openbsd_mips64.go

    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:09:41 UTC 2022
    - 970 bytes
    - Viewed (0)
Back to top