Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,311 for modes (0.11 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    func TestIssue56044(t *testing.T) {
    	if testing.Short() {
    		t.Skipf("skipping test: too long for short mode")
    	}
    	if !goexperiment.CoverageRedesign {
    		t.Skipf("skipping new coverage tests (experiment not enabled)")
    	}
    
    	testenv.MustHaveGoBuild(t)
    
    	modes := []string{"-covermode=set", "-covermode=atomic"}
    
    	for _, mode := range modes {
    		// Build the Go runtime with "-m", capturing output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/volume/util/util.go

    }
    
    // ContainsAccessMode returns whether the requested mode is contained by modes
    func ContainsAccessMode(modes []v1.PersistentVolumeAccessMode, mode v1.PersistentVolumeAccessMode) bool {
    	for _, m := range modes {
    		if m == mode {
    			return true
    		}
    	}
    	return false
    }
    
    // ContainsAllAccessModes returns whether all of the requested modes are contained by modes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    limitations under the License.
    */
    
    package modes_test
    
    import (
    	"encoding/hex"
    	"fmt"
    	"math"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    // TestAppendixA roundtrips the examples of encoded CBOR data items in RFC 8949 Appendix A. For
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    #include "TestDB.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    /** Run modes for the basic interface. */
    typedef enum {
      CU_BRM_NORMAL = 0,  /**< Normal mode - failures and run summary are printed [default]. */
      CU_BRM_SILENT,      /**< Silent mode - no output is printed except framework error messages. */
      CU_BRM_VERBOSE      /**< Verbose mode - maximum output of run details. */
    } CU_BasicRunMode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	// provide? There's no point giving the name of the executable
    	// as this is already recorded by telemetry. What if the
    	// application runs in multiple modes? Then it might be useful
    	// to record the mode. The problem is that an application with
    	// multiple modes probably doesn't know its mode by line 1 of
    	// main.main: it might require flag or argument parsing, or
    	// even validation of an environment variable, and we really
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/syntax.go

    // license that can be found in the LICENSE file.
    
    package syntax
    
    import (
    	"fmt"
    	"io"
    	"os"
    )
    
    // Mode describes the parser mode.
    type Mode uint
    
    // Modes supported by the parser.
    const (
    	CheckBranches Mode = 1 << iota // check correct use of labels, break, continue, and goto statements
    )
    
    // Error describes a syntax error. Error implements the error interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/telemetrycmd/telemetry.go

    	if len(args) == 0 {
    		fmt.Println(telemetry.Mode())
    		return
    	}
    
    	if len(args) != 1 {
    		cmd.Usage()
    	}
    
    	mode := args[0]
    	if mode != "local" && mode != "off" && mode != "on" {
    		cmd.Usage()
    	}
    	if old := telemetry.Mode(); old == mode {
    		return
    	}
    
    	if err := telemetry.SetMode(mode); err != nil {
    		base.Fatalf("go: failed to set the telemetry mode to %s: %v", mode, err)
    	}
    	if mode == "on" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

        : public PassWrapper<FallbackToFlexOps, OperationPass<func::FuncOp>> {
     public:
      FallbackToFlexOps() = default;
      explicit FallbackToFlexOps(const std::string &mode) { mode_ = mode; }
      FallbackToFlexOps(const FallbackToFlexOps &other) { mode_ = other.mode_; }
    
      void runOnOperation() override;
    
      StringRef getArgument() const final { return "quant-raise-flex-fallback"; }
    
      StringRef getDescription() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package modes
    
    import (
    	"github.com/fxamacker/cbor/v2"
    )
    
    var Encode cbor.EncMode = func() cbor.EncMode {
    	encode, err := cbor.EncOptions{
    		// Map keys need to be sorted to have deterministic output, and this is the order
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    			modes := []storage.VolumeLifecycleMode{
    				storage.VolumeLifecyclePersistent,
    			}
    			fakeClient := fakeclient.NewSimpleClientset(
    				getTestCSIDriver("no-info", &noPodMountInfo, nil, modes),
    				getTestCSIDriver("info", &currentPodInfoMount, nil, modes),
    				getTestCSIDriver("nil", nil, nil, modes),
    				getTestCSIDriver("supports_selinux", &noPodMountInfo, nil, modes),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top