Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 75 of 75 for createData (0.76 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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