Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for addData (0.12 sec)

  1. src/go/internal/gccgoimporter/testdata/time.gox

     func (t <type 3>) Nanosecond () <type -11>;
     func (t <type 3>) YearDay () <type -11>;
     func (t <type 3>) Add (d <type 1>) <type 3>;
     func (t <type 3>) Sub (u <type 3>) <type 1>;
     func (t <type 3>) AddDate (years <type -11>, months <type -11>, days <type -11>) <type 3>;
     func (t <type 3>) .time.date (full <type -15>) (year <type -11>, month <type 18>, day <type -11>, yday <type -11>);
     func (t <type 3>) UTC () <type 3>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  2. cmd/bucket-replication-handlers.go

    				Bucket: bucket,
    				Err:    fmt.Errorf("invalid query parameter older-than %s for %s : %w", durationStr, bucket, err),
    			}), r.URL)
    			return
    		}
    	}
    	resetBeforeDate := UTCNow().AddDate(0, 0, -1*int(days/24))
    
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    	if err != nil {
    		return time.Time{}, fmt.Errorf("error parsing trackedSince time: %v", err)
    	}
    	// make sure the time to be 00:00 on the day just after the date starts to track
    	return trackedSinceTime.AddDate(0, 0, 1), nil
    }
    
    func hasSecretReference(serviceAccount *v1.ServiceAccount, secretName string) bool {
    	for _, secret := range serviceAccount.Secrets {
    		if secret.Name == secretName {
    			return true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/time/time_test.go

    	{"Sub", func(t1, t2 Time) bool { return t1.Sub(t2) == t2.Sub(t1) }},
    
    	//Original caus for this test case bug 15852
    	{"AddDate", func(t1, t2 Time) bool { return t1.AddDate(1991, 9, 3) == t2.AddDate(1991, 9, 3) }},
    
    	{"UTC", func(t1, t2 Time) bool { return t1.UTC() == t2.UTC() }},
    	{"Local", func(t1, t2 Time) bool { return t1.Local() == t2.Local() }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        paths.add(path);
                    }
                }
            }
        }
    
        public void addCompileSourceRoot(String path) {
            addPath(getCompileSourceRoots(), path);
        }
    
        public void addTestCompileSourceRoot(String path) {
            addPath(getTestCompileSourceRoots(), path);
        }
    
        public List<String> getCompileSourceRoots() {
            return compileSourceRoots;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    		if qhatv.cmp(uu.norm()) > 0 {
    			panic("impossible")
    		}
    		c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
    		if c > 0 {
    			subVW(uu[len(qhatv):], uu[len(qhatv):], c)
    		}
    		addAt(z, qhat, j-B)
    		j -= B
    	}
    
    	// TODO(rsc): Rewrite loop as described above and delete all this code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/runtime/proc_test.go

    	ping <- true // Start ping-pong
    	<-stop
    	b.StopTimer()
    	<-ping // Let last ponger exit
    	<-done // Make sure goroutines exit
    	<-done
    	<-done
    }
    
    var padData [128]uint64
    
    func stackGrowthRecursive(i int) {
    	var pad [128]uint64
    	pad = padData
    	for j := range pad {
    		if pad[j] != 0 {
    			return
    		}
    	}
    	if i != 0 {
    		stackGrowthRecursive(i - 1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils_test.go

    				t.Errorf("Active pod names (-want,+got):\n%s", diff)
    			}
    		})
    	}
    }
    
    func TestSortingActivePods(t *testing.T) {
    	now := metav1.Now()
    	then := metav1.Time{Time: now.AddDate(0, -1, 0)}
    
    	tests := []struct {
    		name      string
    		pods      []v1.Pod
    		wantOrder []string
    	}{
    		{
    			name: "Sorts by active pod",
    			pods: []v1.Pod{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	if res.Year() >= 2050 {
    		// UTCTime interprets the low order digits 50-99 as 1950-99.
    		// This only applies to its use in the X.509 profile.
    		// See https://tools.ietf.org/html/rfc5280#section-4.1.2.5.1
    		res = res.AddDate(-100, 0, 0)
    	}
    	*out = res
    	return true
    }
    
    // ReadASN1BitString decodes an ASN.1 BIT STRING into out and advances.
    // It reports whether the read was successful.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/encoding/asn1/asn1.go

    		return
    	}
    
    	if ret.Year() >= 2050 {
    		// UTCTime only encodes times prior to 2050. See https://tools.ietf.org/html/rfc5280#section-4.1.2.5.1
    		ret = ret.AddDate(-100, 0, 0)
    	}
    
    	return
    }
    
    // parseGeneralizedTime parses the GeneralizedTime from the given byte slice
    // and returns the resulting time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top