Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 912 for regular (0.2 sec)

  1. pkg/api/testing/serialization_test.go

    // BenchmarkEncodeYAMLMarshal provides a baseline for regular YAML encode performance
    func BenchmarkEncodeYAMLMarshal(b *testing.B) {
    	items := benchmarkItems(b)
    	width := len(items)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		if _, err := yaml.Marshal(&items[i%width]); err != nil {
    			b.Fatal(err)
    		}
    	}
    	b.StopTimer()
    }
    
    // BenchmarkDecodeYAML provides a baseline for regular YAML decode performance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. tests/testdata/config/none.yaml

    spec:
      egress:
        - hosts:
            - none/*
            - default/test.default # TODO: without namespace it  fails validation !
          # TODO: if we include the namespace, why do we need full name ? Importing regular services should work.
    
      # Label selection seems to confuse the new code.
      ingress:
        - port:
            number: 7071
            protocol: HTTP
            name: httplocal
          defaultEndpoint: 127.0.0.1:17071
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/objdump/main.go

    // Usage:
    //
    //	go tool objdump [-s symregexp] binary
    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    
    	"github.com/spf13/pflag"
    )
    
    const (
    	corsAllowedOriginsHelpText = "List of allowed origins for CORS, comma separated. " +
    		"An allowed origin can be a regular expression to support subdomain matching. " +
    		"If this list is empty CORS will not be enabled. " +
    		"Please ensure each expression matches the entire hostname by anchoring " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPlugins.kt

    import org.gradle.kotlin.dsl.provider.PrecompiledScriptPluginsSupport
    import org.gradle.kotlin.dsl.provider.gradleKotlinDslJarsOf
    import org.gradle.kotlin.dsl.support.serviceOf
    
    
    /**
     * Exposes `*.gradle.kts` scripts from regular Kotlin source-sets as binary Gradle plugins.
     *
     * @see PrecompiledScriptPluginsSupport
     */
    abstract class PrecompiledScriptPlugins : Plugin<Project> {
    
        override fun apply(project: Project): Unit = project.run {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/image_format/internal_api.h

                                 const std::string& file_prefix);
    // Writes the SavedModel proto to std::string
    // The bool field record whether it's saved as a chunked protobuf (true) or
    // regular protobuf (false)
    absl::StatusOr<std::tuple<std::string, bool>> WriteSavedModelToString(
        SavedModel* saved_model_proto);
    #if !IS_OSS
    absl::StatusOr<std::tuple<absl::Cord, bool>> WriteSavedModelToCord(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. ci/official/utilities/get_versions.sh

    # nightly job. update_version.py affects TF_VER_SUFFIX, TF_VER_PYTHON, and
    # TF_VER_FULL.
    
    # Note: in awk, the command '/search/ {commands}' applies the commands to any line that
    # matches the /search/ regular expression. "print $N" prints the Nth "field",
    # where fields are strings separated by whitespace.
    export TF_VER_MAJOR=$(awk '/#define TF_MAJOR_VERSION/ {print $3}' tensorflow/core/public/version.h)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/encoding/gob/example_interface_test.go

    	return math.Hypot(float64(p.X), float64(p.Y))
    }
    
    type Pythagoras interface {
    	Hypotenuse() float64
    }
    
    // This example shows how to encode an interface value. The key
    // distinction from regular types is to register the concrete type that
    // implements the interface.
    func Example_interface() {
    	var network bytes.Buffer // Stand-in for the network.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/css/fonts.css

      src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
    }
    /* cyrillic */
    @font-face {
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 400;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

                        ?.takeIf { conventionValue ->
                            // Prevent convention value to be assigned to a field of incompatible type
                            // A common cause is a regular field type being promoted to a Property/Provider type.
                            conventionValue.isAssignableTo(field.type)
                        } ?: fieldValue
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top