Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for late (0.08 sec)

  1. src/cmd/compile/internal/ssagen/nowb.go

    }
    
    // recordCall records a call from ODCLFUNC node "from", to function
    // symbol "to" at position pos.
    //
    // This should be done as late as possible during compilation to
    // capture precise call graphs. The target of the call is an LSym
    // because that's all we know after we start SSA.
    //
    // This can be called concurrently for different from Nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    import (
    	"fmt"
    	"os"
    	"sync"
    	"time"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    // time and date handling
    
    var distantPast = 21 * 24 * time.Hour
    
    // reports that are too old (21 days) are not uploaded
    func (u *uploader) tooOld(date string, uploadStartTime time.Time) bool {
    	t, err := time.Parse("2006-01-02", date)
    	if err != nil {
    		u.logger.Printf("tooOld: %v", err)
    		return false
    	}
    	age := uploadStartTime.Sub(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. samples/ratelimit/rate-limit-service.yaml

    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    #  data:
    #    config.yaml: |
    #      domain: echo-ratelimit
    #      descriptors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	// TODO(rfindley): use dateFormat throughout.
    )
    
    // uploadReportDate returns the date component of the upload file name, or "" if the
    // date was unmatched.
    func (u *uploader) uploadReportDate(fname string) time.Time {
    	match := dateRE.FindStringSubmatch(fname)
    	if match == nil || len(match) < 2 {
    		u.logger.Printf("malformed report name: missing date: %q", filepath.Base(fname))
    		return time.Time{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    > Task :buildSrc:processResources UP-TO-DATE
    > Task :buildSrc:classes UP-TO-DATE
    > Task :buildSrc:jar UP-TO-DATE
    > Task :list:compileJava UP-TO-DATE
    > Task :utilities:compileJava UP-TO-DATE
    > Task :app:compileJava UP-TO-DATE
    
    BUILD SUCCESSFUL in 374ms
    12 actionable tasks: 12 up-to-date
    ----
    
    When you run a task that has been previously executed and hasn't changed, then `UP-TO-DATE` is printed next to the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    > Task :app:compileJava UP-TO-DATE
    > Task :app:processResources NO-SOURCE
    > Task :app:classes UP-TO-DATE
    > Task :app:jar UP-TO-DATE
    > Task :app:startScripts UP-TO-DATE
    > Task :app:distTar UP-TO-DATE
    > Task :app:distZip UP-TO-DATE
    > Task :app:assemble UP-TO-DATE
    > Task :app:compileTestJava UP-TO-DATE
    > Task :app:processTestResources NO-SOURCE
    > Task :app:testClasses UP-TO-DATE
    > Task :app:test UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/features/features.go

    			return nil, errors.Errorf("missing bool value for feature-gate key:%s", s)
    		}
    
    		k := strings.TrimSpace(arr[0])
    		v := strings.TrimSpace(arr[1])
    
    		featureSpec, ok := (*f)[k]
    		if !ok {
    			return nil, errors.Errorf("unrecognized feature-gate key: %s", k)
    		}
    
    		if featureSpec.PreRelease == featuregate.Deprecated {
    			klog.Warningf("Setting deprecated feature gate %s=%s. It will be removed in a future release.", k, v)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
    
            when: "the kotlin script compiler is invoked due to a script change"
            buildKotlinFile << "\n"
            succeeds "clean"
            then: "clean is still marked as UP-TO-DATE"
            result.groupedOutput.task(":clean").outcome == "UP-TO-DATE"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    	T Time `json:"t"`
    }
    
    func TestTimeMarshalYAML(t *testing.T) {
    	cases := []struct {
    		input  Time
    		result string
    	}{
    		{Time{}, "t: null\n"},
    		{Date(1998, time.May, 5, 1, 5, 5, 50, time.FixedZone("test", -4*60*60)), "t: \"1998-05-05T05:05:05Z\"\n"},
    		{Date(1998, time.May, 5, 5, 5, 5, 0, time.UTC), "t: \"1998-05-05T05:05:05Z\"\n"},
    	}
    
    	for _, c := range cases {
    		input := TimeHolder{c.input}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvent.java

    import java.io.Serializable;
    import java.util.Calendar;
    import java.util.Date;
    
    /**
     * Information regarding when and why a daemon was stopped.
     */
    public class DaemonStopEvent implements Serializable {
        public static final org.gradle.internal.serialize.Serializer<DaemonStopEvent> SERIALIZER = new Serializer();
    
        private final Date timestamp;
        @Nullable
        private final Long pid;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top