Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for explainTo (0.37 sec)

  1. guava/src/com/google/common/hash/Striped64.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/utils.go

    	// specified with @every form, we first need to calculate the potential earliest
    	// time by multiplying the initial number of missed schedules by its interval,
    	// this is critical to ensure @every starts at the correct time, this explains
    	// the numberOfMissedSchedules-1, the additional -1 serves there to go back
    	// in time one more time unit, and let the cron library calculate a proper
    	// schedule, for case where the schedule is not consistent, for example
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local.go

    				Requests: v1.ResourceList{
    					v1.ResourceCPU:    resource.MustParse("100m"),
    					v1.ResourceMemory: resource.MustParse("100Mi"),
    				},
    			},
    			// The etcd probe endpoints are explained here:
    			// https://github.com/kubernetes/kubeadm/issues/3039
    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  4. docs/en/docs/advanced/custom-response.md

    This is because by default, FastAPI will inspect every item inside and make sure it is serializable as JSON, using the same [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank} explained in the tutorial. This is what allows you to return **arbitrary objects**, for example database models.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	if OverlappingBuiltInResources()[schema.GroupResource{Group: crd.Spec.Group, Resource: crd.Spec.Names.Plural}] {
    		// Skip deletion, explain why, and proceed to remove the finalizer and delete the CRD
    		apiextensionshelpers.SetCRDCondition(crd, apiextensionsv1.CustomResourceDefinitionCondition{
    			Type:    apiextensionsv1.Terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. migrator/migrator.go

    			defaultStmt := &gorm.Statement{Vars: []interface{}{field.DefaultValueInterface}}
    			m.Dialector.BindVarTo(defaultStmt, defaultStmt, field.DefaultValueInterface)
    			expr.SQL += " DEFAULT " + m.Dialector.Explain(defaultStmt.SQL.String(), field.DefaultValueInterface)
    		} else if field.DefaultValue != "(-)" {
    			expr.SQL += " DEFAULT " + field.DefaultValue
    		}
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graph.java

     *
     * <h3>Additional documentation</h3>
     *
     * <p>See the Guava User Guide for the {@code common.graph} package (<a
     * href="https://github.com/google/guava/wiki/GraphsExplained">"Graphs Explained"</a>) for
     * additional documentation, including:
     *
     * <ul>
     *   <li><a
     *       href="https://github.com/google/guava/wiki/GraphsExplained#equals-hashcode-and-graph-equivalence">
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Graph.java

     *
     * <h3>Additional documentation</h3>
     *
     * <p>See the Guava User Guide for the {@code common.graph} package (<a
     * href="https://github.com/google/guava/wiki/GraphsExplained">"Graphs Explained"</a>) for
     * additional documentation, including:
     *
     * <ul>
     *   <li><a
     *       href="https://github.com/google/guava/wiki/GraphsExplained#equals-hashcode-and-graph-equivalence">
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/issues0.go

    var a3, b3 /* ERROR "cycle" */ = int /* ERROR "assignment mismatch" */ /* ERROR "assignment mismatch" */ (1<<""[b3])
    
    // issue10260
    // Check that error messages explain reason for interface assignment failures.
    type (
    	I0 interface{}
    	I1 interface{ foo() }
    	I2 interface{ foo(x int) }
    	T0 struct{}
    	T1 struct{}
    	T2 struct{}
    )
    
    func (*T1) foo() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/README

    single-quoted block of text, a repeated single quote indicates a literal single
    quote, as in:
    
        'Don''t communicate by sharing memory.'
    
    A line beginning with # is a comment and conventionally explains what is being
    done or tested at the start of a new section of the script.
    
    Commands are executed one at a time, and errors are checked for each command;
    if any command fails unexpectedly, no subsequent commands in the script are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top