Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for unwrapping (0.15 sec)

  1. pkg/volume/csi/csi_block.go

    limitations under the License.
    */
    
    /*
    This file defines block volume related methods for CSI driver.
    CSI driver is responsible for staging/publishing volumes to their staging/publish paths.
    Mapping and unmapping of a device in a publish path to its global map path and its
    pod device map path are done by operation_executor through MapBlockVolume/UnmapBlockVolume
    (MapBlockVolume and UnmapBlockVolume take care for lock, symlink, and bind mount).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
       * in the delegate's {@code execute} method or by wrapping the returned {@code
       * ListeningExecutorService}.
       *
       * <p>If the delegate executor was already an instance of {@code ListeningExecutorService}, it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. src/strconv/atoi_test.go

    	{"`", "strconv.ParseFloat: parsing \"`\": failed"},
    	{"1\x00.2", `strconv.ParseFloat: parsing "1\x00.2": failed`},
    }
    
    func init() {
    	// The parse routines return NumErrors wrapping
    	// the error and the string. Convert the tables above.
    	for i := range parseUint64Tests {
    		test := &parseUint64Tests[i]
    		if test.err != nil {
    			test.err = &NumError{"ParseUint", test.in, test.err}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/search/search.go

    func NewMatch(pattern string) *Match {
    	return &Match{pattern: pattern}
    }
    
    // Pattern returns the pattern to be matched.
    func (m *Match) Pattern() string { return m.pattern }
    
    // AddError appends a MatchError wrapping err to m.Errs.
    func (m *Match) AddError(err error) {
    	m.Errs = append(m.Errs, &MatchError{Match: m, Err: err})
    }
    
    // IsLiteral reports whether the pattern is free of wildcards and meta-patterns.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    	// However, if the os.Stderr (or os.Stdout) file descriptors are
    	// passed on, the hanging adb subprocess will hold them open and
    	// go test will hang forever.
    	//
    	// Avoid that by wrapping stderr, breaking the short circuit and
    	// forcing cmd.Run to use another pipe and goroutine to pass
    	// along stderr from adb.
    	cmd.Stderr = struct{ io.Writer }{os.Stderr}
    	err := cmd.Run()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

                #include HEADER(FUNC_NAME, (), 3)
            """
    
            expect:
            resolve() == [header]
        }
    
        def "can produce a macro function call by concatenating name and wrapping args in parens"() {
            given:
            sourceFile << """
                #define FUNC(X, Y) X
                #define HEADER_(X, Y) X ## Y
                #define HEADER(X, Y, Z) HEADER_(X, (Y, Z))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
       * in the delegate's {@code execute} method or by wrapping the returned {@code
       * ListeningExecutorService}.
       *
       * <p>If the delegate executor was already an instance of {@code ListeningExecutorService}, it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Test that functions' graph op must have only island ops wrapping a single op
    // and a single fetch op, otherwise, the pass will signal failure.
    
    func.func @graph_multi_op_island() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. src/slices/slices.go

    // The follow-cycles algorithm can be 1-write but it is not very cache friendly.
    
    // rotateLeft rotates s left by r spaces.
    // s_final[i] = s_orig[i+r], wrapping around.
    func rotateLeft[E any](s []E, r int) {
    	Reverse(s[:r])
    	Reverse(s[r:])
    	Reverse(s)
    }
    func rotateRight[E any](s []E, r int) {
    	rotateLeft(s, len(s)-r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                val innerSourceData = sourceData(inner, 0)
                return UnsupportedConstruct(outerSourceData, innerSourceData, feature)
            } // TODO: hack, due to script wrapping
        }
    
        fun script(originalTree: LightTree): LanguageTreeResult {
            val tree = CachingLightTree(originalTree)
            val packageNode = packageNode(tree)
            val importNodes = importNodes(tree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top