Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 422 for gretty (0.17 sec)

  1. pkg/apis/flowcontrol/validation/validation.go

    	allErrs = append(allErrs, ValidateFlowSchemaSpec(fs.Name, &fs.Spec, specPath)...)
    	if mand, ok := internalbootstrap.MandatoryFlowSchemas[fs.Name]; ok {
    		// Check for almost exact equality.  This is a pretty
    		// strict test, and it is OK in this context because both
    		// sides of this comparison are intended to ultimately
    		// come from the same code.
    		if !apiequality.Semantic.DeepEqual(fs.Spec, mand.Spec) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	}
    	if path := lockPath(pass.Pkg, typ, nil); path != nil {
    		pass.Reportf(e.Pos(), "range var %s copies lock: %v", analysisutil.Format(pass.Fset, e), path)
    	}
    }
    
    type typePath []string
    
    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

            }
          },
          "parameters": [
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            }
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

            }
          },
          "parameters": [
            {
              "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
              "in": "query",
              "name": "pretty",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            }
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                            project.getDependencies().registerTransform(FileSizeTransform.class, spec -> {
                                spec.getFrom().attribute(ARTIFACT_TYPE_ATTRIBUTE, JAR_TYPE);
                                spec.getTo().attribute(ARTIFACT_TYPE_ATTRIBUTE, TXT_TYPE);
                            });
                        }
    
                        private Configuration createBaseConfiguration(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    TIP: To permanently enable verbose mode, add `org.gradle.console=verbose` to your `gradle.properties` file.
    
    == Build caching
    
    Incremental Builds are a great optimization that helps avoid work already done.
    If a developer continuously changes a single file, there is likely no need to rebuild all the other files in the project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/runtime/tracestack.go

    	// The maximum number of bytes required to hold the encoded stack, given that
    	// it contains N frames.
    	maxBytes := 1 + (2+4*len(frames))*traceBytesPerNumber
    
    	// Estimate the size of this record. This
    	// bound is pretty loose, but avoids counting
    	// lots of varint sizes.
    	//
    	// Add 1 because we might also write traceEvStacks.
    	var flushed bool
    	w, flushed = w.ensure(1 + maxBytes)
    	if flushed {
    		w.byte(byte(traceEvStacks))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/tests/ops.mlir

    // -----
    
    // CHECK-LABEL: tensor_list_type_tuple_like
    func.func private @tensor_list_type_tuple_like() -> !tfr.tensor_list<input_T>
    
    // -----
    
    // expected-error@+1 {{unbalanced '[' character in pretty dialect name}}
    func.func private @tensor_invalid_1() -> !tfr.tensor<[N, T>
    
    // -----
    
    // expected-error@+1 {{unbalanced}}
    func.func @tensor_invalid_2() -> !tfr.tensor<[N, T]
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/runtime/runtime.go

    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    // in aggregate. But because we compute this rate lazily, there's a pretty good chance a decent
    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    // Called by runtime/pprof in addition to runtime code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

        private void initCalculatedValues() {
            // TODO: We wrap the CalculatedValues in an AtomicReference so that we can reset their state, however
            //       CalculatedValues are not resettable for a reason. This is a pretty terrible hack.
            //       We should get rid of reevaluate entirely, so that we do not need these AtomicReferences.
            //       We are already on this path -- we deprecated mutating a configuration after observation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top