Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 679 for Option (0.33 sec)

  1. cmd/bucket-lifecycle-handlers_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            result.timestamp == 123
        }
    
        def "can serialize select option prompt event"() {
            expect:
            def event = new SelectOptionPromptEvent(123, 'prompt', ['a', 'b'], 1)
            def result = serialize(event, serializer)
            result instanceof SelectOptionPromptEvent
            result.question == 'prompt'
            result.options == ['a', 'b']
            result.defaultOption == 1
            result.timestamp == 123
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

    I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools.
    
    But at some point, there was no other option than creating something that provided all these features, taking the best ideas from previous tools, and combining them in the best way possible, using language features that weren't even available before (Python 3.6+ type hints).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/edit.go

    		if !modfile.GoVersionRE.MatchString(*editGo) {
    			base.Fatalf(`go mod: invalid -go option; expecting something like "-go %s"`, gover.Local())
    		}
    	}
    	if *editToolchain != "" && *editToolchain != "none" {
    		if !modfile.ToolchainRE.MatchString(*editToolchain) {
    			base.Fatalf(`go mod: invalid -toolchain option; expecting something like "-toolchain go%s"`, gover.Local())
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    		return "", "", fmt.Errorf("failed to parse the pod full name %q", podFullName)
    	}
    	return parts[0], parts[1], nil
    }
    
    // Option is a functional option type for Runtime, useful for
    // completely optional settings.
    type Option func(Runtime)
    
    // SortContainerStatusesByCreationTime sorts the container statuses by creation time.
    type SortContainerStatusesByCreationTime []*Status
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. .teamcity/subprojects.json

        "path": "platforms/core-runtime/build-operations",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-option",
        "path": "platforms/core-runtime/build-option",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-process-services",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. cmd/erasure-metadata_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 20:57:37 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      //  instead uses optional symbol ref attribute.
      //
      // TODO(b/182315488): Remove custom handling by finding a better
      // representation in MLIR for empty function names. One option could be to use
      // TensorFlow op defs to figure out function attributes that are missing in
      // MLIR. This will also require some trait to identify optional attributes in
      // MLIR.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gc.go

    }
    
    func (gcToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	ldflags := []string{"-installsuffix", cfg.BuildContext.InstallSuffix}
    	ldflags = append(ldflags, "-buildmode=shared")
    	ldflags = append(ldflags, forcedLdflags...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

        TEST_CASE_HISTOGRAM_MSE_BRUTEFORCE,
        TEST_CASE_HISTOGRAM_MSE_MAX_FREQUENCY,
        TEST_CASE_HISTOGRAM_MSE_SYMMETRIC,
      };
    
      bool test_mode_;
      CalibrationOptions calib_opts_;
      Option<TestCase> test_case_{
          *this, "test-case",
          llvm::cl::desc(
              "Select a the test case for testing various calibration methods. It "
              "sets the value of calib_opts_ when test_mode_ is true."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top