Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 246 for interesting (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipCopyAction.java

    import java.util.GregorianCalendar;
    
    public class ZipCopyAction implements CopyAction {
        /**
         * Note that setting the January 1st 1980 (or even worse, "0", as time) won't work due
         * to Java 8 doing some interesting time processing: It checks if this date is before January 1st 1980
         * and if it is it starts setting some extra fields in the zip. Java 7 does not do that - but in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_utils.go

    		if rs, getErr = c.Get(context.TODO(), rs.Name, metav1.GetOptions{}); getErr != nil {
    			// If the GET fails we can't trust status.Replicas anymore. This error
    			// is bound to be more interesting than the update failure.
    			return nil, getErr
    		}
    	}
    
    	return nil, updateErr
    }
    
    func calculateStatus(rs *apps.ReplicaSet, filteredPods []*v1.Pod, manageReplicasErr error) apps.ReplicaSetStatus {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    contributors to follow so that we can have a chance of keeping on top of
    things.
    
    Some of the ideas are documented in the [Maven Wiki][maven-wiki]
    which might be interesting to read and for further discussion.
    
    Getting Started
    ---------------
    
    + Make sure you have a [JIRA account](https://issues.apache.org/jira/).
    + Make sure you have a [GitHub account](https://github.com/signup/free).
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    addition, it records which functions are printf wrappers for use by
    later analysis passes to identify other printf wrappers by induction.
    A result such as “f is a printf wrapper” that is not interesting by
    itself but serves as a stepping stone to an interesting result (such as
    a diagnostic) is called a [Fact].
    
    The analysis API allows an analysis to define new types of facts, to
    associate facts of these types with objects (named entities) declared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/text/template/parse/lex.go

    func lexVariable(l *lexer) stateFn {
    	if l.atTerminator() { // Nothing interesting follows -> "$".
    		return l.emit(itemVariable)
    	}
    	return lexFieldOrVariable(l, itemVariable)
    }
    
    // lexFieldOrVariable scans a field or variable: [.$]Alphanumeric.
    // The . or $ has been scanned.
    func lexFieldOrVariable(l *lexer, typ itemType) stateFn {
    	if l.atTerminator() { // Nothing interesting follows -> "." or "$".
    		if typ == itemVariable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         * project, you might submit the distribution to your version control system. That way no download is necessary at
         * all. This might be in particular interesting, if you provide a custom gradle snapshot to the wrapper, because you
         * don't need to provide a download server then.
         */
        @Input
        public String getDistributionUrl() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    However, such a library would be published at single GAV (group, artifact and version) coordinates.
    This means that, at single coordinates, potentially co-exist different "features" of a component.
    
    With Gradle it becomes interesting to explicitly declare what features a component provides.
    For this, Gradle provides the concept of <<dependency_constraints.adoc#sec:adding-constraints-transitive-deps,capability>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/runtime/race.go

    //go:nosplit
    func racewriterangepc(addr unsafe.Pointer, sz, callpc, pc uintptr) {
    	gp := getg()
    	if gp != gp.m.curg {
    		// The call is coming from manual instrumentation of Go code running on g0/gsignal.
    		// Not interesting.
    		return
    	}
    	if callpc != 0 {
    		racefuncenter(callpc)
    	}
    	racewriterangepc1(uintptr(addr), sz, pc)
    	if callpc != 0 {
    		racefuncexit()
    	}
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    				lineNo = n
    			}
    		} else if filePath := javaLocationPathRx.FindStringSubmatch(jloc[2]); len(filePath) == 3 {
    			// If there's not a file:line, it's a shared library path.
    			// The path isn't interesting, so just give the .so.
    			lineFunc, lineFile = filePath[1], filepath.Base(filePath[2])
    		} else if strings.Contains(jloc[2], "generated stub/JIT") {
    			lineFunc = "STUB"
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		Int(minI8 - 1),
    		Int(minI16 + 1),
    		Int(minI16),
    		Int(minI16 - 1),
    		Int(minI32 + 1),
    		Int(minI32),
    		Int(minI32 - 1),
    		Int(minI64 + 1),
    		Int(minI64),
    
    		// other possibly interesting values
    		Uint(1),
    		Int(-1),
    		Uint(0xff << 56),
    		Uint(0xff << 32),
    		Uint(0xff << 24),
    	}
    	sort.Slice(values, func(i, j int) bool { return values[i].Cmp(values[j]) == -1 })
    	var ret []*big.Int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top