Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,527 for modes (0.04 sec)

  1. guava/src/com/google/common/io/Files.java

        private final File file;
        private final ImmutableSet<FileWriteMode> modes;
    
        private FileByteSink(File file, FileWriteMode... modes) {
          this.file = checkNotNull(file);
          this.modes = ImmutableSet.copyOf(modes);
        }
    
        @Override
        public FileOutputStream openStream() throws IOException {
          return new FileOutputStream(file, modes.contains(APPEND));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin_test.go

    			modes:      []storage.VolumeLifecycleMode{storage.VolumeLifecycleEphemeral},
    		},
    		{
    			name:       "construct spec from volume spec2, missing mode",
    			specVolID:  "volspec2",
    			originSpec: volume.NewSpecFromVolume(makeTestVol("volspec2", testDriver)),
    			podUID:     types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    			modes:      []storage.VolumeLifecycleMode{},
    			shouldFail: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/IntMathTest.java

        int x = 1000000;
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertEquals(6, IntMath.log10(x, mode));
        }
      }
    
      // Simple test to cover sqrt(0) for all types and all modes.
      @GwtIncompatible // sqrt
      public void testSqrtZeroAlwaysZero() {
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertEquals(0, IntMath.sqrt(0, mode));
        }
      }
    
      @GwtIncompatible // sqrt
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    }
    
    func (anyObject) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    func (p anyObject) MarshalCBOR() ([]byte, error) {
    	return modes.Encode.Marshal(p.Value)
    }
    
    func (p *anyObject) UnmarshalCBOR(in []byte) error {
    	return modes.Decode.Unmarshal(in, &p.Value)
    }
    
    func TestEncode(t *testing.T) {
    	for _, tc := range []struct {
    		name           string
    		in             runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

        RoundToDoubleTester(BigDecimal input) {
          this.input = input;
        }
    
        RoundToDoubleTester setExpectation(double expectedValue, RoundingMode... modes) {
          for (RoundingMode mode : modes) {
            Double previous = expectedValues.put(mode, expectedValue);
            if (previous != null) {
              throw new AssertionError();
            }
          }
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. doc/asm.html

    <code>cmd/internal/obj/x86/a.out.go</code>.
    </p>
    
    <p>
    The architectures share syntax for common addressing modes such as
    <code>(R1)</code> (register indirect),
    <code>4(R1)</code> (register indirect with offset), and
    <code>$foo(SB)</code> (absolute address).
    The assembler also supports some (not necessarily all) addressing modes
    specific to each architecture.
    The sections below list these.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  7. pkg/volume/local/local_test.go

    	defer os.RemoveAll(tmpDir)
    
    	modes := plug.GetAccessModes()
    	if !volumetest.ContainsAccessMode(modes, v1.ReadWriteOnce) {
    		t.Errorf("Expected AccessModeType %q", v1.ReadWriteOnce)
    	}
    
    	if volumetest.ContainsAccessMode(modes, v1.ReadWriteMany) {
    		t.Errorf("Found AccessModeType %q, expected not", v1.ReadWriteMany)
    	}
    	if volumetest.ContainsAccessMode(modes, v1.ReadOnlyMany) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top