Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for regular (0.16 sec)

  1. pkg/test/framework/resource/flags.go

    		"Comma separated list of labels for selecting tests to run (e.g. 'foo,+bar-baz').")
    
    	flag.Var(&settingsFromCommandLine.SkipString, "istio.test.skip",
    		"Skip tests matching the regular expression. This follows the semantics of -test.run.")
    
    	flag.Var(&settingsFromCommandLine.SkipWorkloadClasses, "istio.test.skipWorkloads",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    	},
    	EvCPUSample: event.Spec{
    		Name: "CPUSample",
    		Args: []string{"time", "m", "p", "g", "stack"},
    		// N.B. There's clearly a timestamp here, but these Events
    		// are special in that they don't appear in the regular
    		// M streams.
    	},
    	EvFrequency: event.Spec{
    		Name: "Frequency",
    		Args: []string{"freq"},
    	},
    	EvExperimentalBatch: event.Spec{
    		Name:    "ExperimentalBatch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. cmd/globals.go

    	diskFillFraction = 0.99
    
    	// diskReserveFraction is the fraction of a disk where we will fill other server pools first.
    	// If all pools reach this, we will use all pools with regular placement.
    	diskReserveFraction = 0.15
    
    	// diskAssumeUnknownSize is the size to assume when an unknown size upload is requested.
    	diskAssumeUnknownSize = 1 << 30
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    // Represents a matching method that matches quantizable units by lifted
    // functions' names.
    message FunctionNameMatcherSpec {
      // Regular expression to match lifted functions' names. Underlying regex
      // engine uses re2, which accepts a subset of PCRE. See
      // https://github.com/google/re2/wiki/Syntax for details.
      string regex = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    	// NOSPLIT for these wrappers, so all are currently tagged with NOSPLIT.
    	fn.Pragma |= ir.Nosplit
    
    	// Generate call. Use tail call if no params and no returns,
    	// but a regular call otherwise.
    	//
    	// Note: ideally we would be using a tail call in cases where
    	// there are params but no returns for ABI0->ABIInternal wrappers,
    	// provided that all params fit into registers (e.g. we don't have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/go/types/check_test.go

    // string.
    //
    // The harness will verify that each ERROR pattern is a substring of the
    // error reported at that source position, and that each ERRORx pattern
    // is a regular expression matching the respective error.
    // Consecutive comments may be used to indicate multiple errors reported
    // at the same position.
    //
    // For instance, the following test source indicates that an "undeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/signature.go

    					break
    				}
    				var cause string
    				switch u := T.under().(type) {
    				case *Basic:
    					// unsafe.Pointer is treated like a regular pointer
    					if u.kind == UnsafePointer {
    						cause = "unsafe.Pointer"
    					}
    				case *Pointer, *Interface:
    					cause = "pointer or interface type"
    				case *TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run(":util:impl:foo")
    
            then:
            fixture.assertProjectsConfigured(":", ":util", ":util:impl")
        }
    
        def "does not show configuration on demand incubating message in a regular mode"() {
            file("gradle.properties").text = "org.gradle.configureondemand=false"
            when:
            run()
            then:
            !output.contains("Configuration on demand is incubating")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    These types shouldn't be confused with the standard Java link:{javaApi}/java/io/File.html[File] type as they are used to tell Gradle that you expect more specific values such as a directory or a non-directory, regular file.
    
    Gradle provides two specialized `Property` subtypes for dealing with values of these types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. src/embed/embed.go

    	}
    	ofile, ok := file.(*openFile)
    	if !ok {
    		return nil, &fs.PathError{Op: "read", Path: name, Err: errors.New("is a directory")}
    	}
    	return []byte(ofile.f.data), nil
    }
    
    // An openFile is a regular file open for reading.
    type openFile struct {
    	f      *file // the file itself
    	offset int64 // current read offset
    }
    
    var (
    	_ io.Seeker   = (*openFile)(nil)
    	_ io.ReaderAt = (*openFile)(nil)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top