Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for explainTo (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	// Transforms data using one of them, and tries to untransform using the others.
    	// Repeats this for all possible combinations.
    	// Math for GracePeriod is explained at - https://github.com/kubernetes/kubernetes/blob/c9ed04762f94a319d7b1fb718dc345491a32bea6/staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go#L159-L163
    	expectedKMSCloseGracePeriod := 46 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  2. tests/query_test.go

    	stmt := dryDB.Clauses(clause.OrderBy{
    		Expression: clause.Expr{SQL: "FIELD(id,?)", Vars: []interface{}{[]int{1, 2, 3}}, WithoutParentheses: true},
    	}).Find(&User{}).Statement
    
    	explainedSQL := dryDB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...)
    	if !regexp.MustCompile("SELECT \\* FROM .*users.* ORDER BY FIELD\\(id,1,2,3\\)").MatchString(explainedSQL) {
    		t.Fatalf("Build Order condition, but got %v", explainedSQL)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

       * iterator's own {@link PeekingIterator#remove()} method) will leave the iterator in an undefined
       * state.
       *
       * <p>The returned iterator does not support removal after peeking, as explained by {@link
       * PeekingIterator#remove()}.
       *
       * <p>Note: If the given iterator is already a {@code PeekingIterator}, it <i>might</i> be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

       * iterator's own {@link PeekingIterator#remove()} method) will leave the iterator in an undefined
       * state.
       *
       * <p>The returned iterator does not support removal after peeking, as explained by {@link
       * PeekingIterator#remove()}.
       *
       * <p>Note: If the given iterator is already a {@code PeekingIterator}, it <i>might</i> be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				kind = "enum"
    			}
    			ret = &ElaboratedType{Kind: kind, Type: ret}
    			break
    		}
    
    		ret = st.templateParam()
    		if len(st.str) > 0 && st.str[0] == 'I' {
    			// See the function comment to explain this.
    			if !isCast {
    				st.subs.add(ret)
    				args := st.templateArgs()
    				ret = &Template{Name: ret, Args: args}
    			} else {
    				ret = st.demangleCastTemplateArgs(ret, true)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	sort.SliceStable(result, func(i, j int) bool {
    		return result[i].CreatedAt > result[j].CreatedAt
    	})
    	klog.V(4).InfoS("Retrieved pods from runtime", "all", all)
    	return result, nil
    }
    
    // containerKillReason explains what killed a given container
    type containerKillReason string
    
    const (
    	reasonStartupProbe        containerKillReason = "StartupProbe"
    	reasonLivenessProbe       containerKillReason = "LivenessProbe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	"os"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"testing/quick"
    	. "time"
    )
    
    // We should be in PST/PDT, but if the time zone files are missing we
    // won't be. The purpose of this test is to at least explain why some of
    // the subsequent tests fail.
    func TestZoneData(t *testing.T) {
    	lt := Now()
    	// PST is 8 hours west, PDT is 7 hours west. We could use the name but it's not unique.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    project build script. This makes it easier to keep plugin versions consistent across projects within a build. The approach also improves the performance of the build.
    
    The <<plugins#sec:subprojects_plugins_dsl,Using Gradle plugins>> chapter explains how you can declare plugins in the root project build script with a version and then apply them to the appropriate subprojects' build scripts. What follows is an example of this approach using three subprojects and three plugins. Note how the root...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    				fmt.Fprintf(os.Stderr, "go: %v\n", c.String())
    			}
    		}
    
    		// modload.EditBuildList reports constraint errors at
    		// the module level, but 'go get' operates on packages.
    		// Rewrite the errors to explain them in terms of packages.
    		reason := func(m module.Version) string {
    			rv, ok := r.resolvedVersion[m.Path]
    			if !ok {
    				return fmt.Sprintf("(INTERNAL ERROR: no reason found for %v)", m)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    				// for pkg to either the original error or the one returned by
    				// queryImport. The existing error indicates only that we couldn't find
    				// the package, whereas the query error also explains why we didn't fix
    				// the problem — so we prefer the latter.
    				pkg.err = err
    			}
    
    			// err is nil, but we intentionally leave pkg.err non-nil and pkg.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top