Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for createData (0.17 sec)

  1. pkg/controller/tainteviction/taint_eviction.go

    	startTime := now
    	triggerTime := startTime.Add(minTolerationTime)
    	scheduledEviction := tc.taintEvictionQueue.GetWorkerUnsafe(podNamespacedName.String())
    	if scheduledEviction != nil {
    		startTime = scheduledEviction.CreatedAt
    		if startTime.Add(minTolerationTime).Before(triggerTime) {
    			return
    		}
    		tc.cancelWorkWithEvent(logger, podNamespacedName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_tls13.go

    		if pskSuite == nil {
    			return c.sendAlert(alertInternalError)
    		}
    		if pskSuite.hash == hs.suite.hash {
    			// Update binders and obfuscated_ticket_age.
    			ticketAge := c.config.time().Sub(time.Unix(int64(hs.session.createdAt), 0))
    			hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
    
    			transcript := hs.suite.hash.New()
    			transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		Hash:                annotatedInfo.Hash,
    		RestartCount:        annotatedInfo.RestartCount,
    		State:               toKubeContainerState(status.State),
    		CreatedAt:           time.Unix(0, status.CreatedAt),
    		Resources:           cStatusResources,
    		User:                cStatusUser,
    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. schema/field.go

    		field.DataType = DataType(dataTyper.GormDataType())
    	}
    
    	if v, ok := field.TagSettings["AUTOCREATETIME"]; (ok && utils.CheckTruth(v)) || (!ok && field.Name == "CreatedAt" && (field.DataType == Time || field.DataType == Int || field.DataType == Uint)) {
    		if field.DataType == Time {
    			field.AutoCreateTime = UnixTime
    		} else if strings.ToUpper(v) == "NANO" {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /* MNG-3877*/
        @Test
        void testReportingInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("reporting-interpolation");
            assertEquals(
                    createPath(Arrays.asList(
                            System.getProperty("user.dir"),
                            "src",
                            "test",
                            "resources-project-builder",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. cmd/iam.go

    		return nil, err
    	}
    
    	pdata, err := json.Marshal(d.Policy)
    	if err != nil {
    		return nil, err
    	}
    
    	return &madmin.PolicyInfo{
    		PolicyName: policyName,
    		Policy:     pdata,
    		CreateDate: d.CreateDate,
    		UpdateDate: d.UpdateDate,
    	}, nil
    }
    
    // ListPolicies - lists all canned policies.
    func (sys *IAMSys) ListPolicies(ctx context.Context, bucketName string) (map[string]policy.Policy, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client.go

    					hello.earlyData = true
    					break
    				}
    			}
    		}
    	}
    
    	// Set the pre_shared_key extension. See RFC 8446, Section 4.2.11.1.
    	ticketAge := c.config.time().Sub(time.Unix(int64(session.createdAt), 0))
    	identity := pskIdentity{
    		label:               session.ticket,
    		obfuscatedTicketAge: uint32(ticketAge/time.Millisecond) + session.ageAdd,
    	}
    	hello.pskIdentities = []pskIdentity{identity}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    	criStatus := &kubecontainer.PodStatus{
    		ID:        pod.UID,
    		Name:      pod.Name,
    		Namespace: pod.Namespace,
    		ContainerStatuses: []*kubecontainer.Status{
    			{Name: "containerA", CreatedAt: testTimestamp},
    			{Name: "containerB", CreatedAt: testTimestamp.Add(1)},
    		},
    	}
    
    	testKubelet := newTestKubelet(t, false)
    	defer testKubelet.Cleanup()
    	kl := testKubelet.kubelet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top