Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 82 for unwrapping (0.2 sec)

  1. src/runtime/mprof.go

    		alreadyFlushed = (prev & 0x1) != 0
    		next := prev | 0x1
    		if c.value.CompareAndSwap(prev, next) {
    			return cycle, alreadyFlushed
    		}
    	}
    }
    
    // increment increases the cycle count by one, wrapping the value at
    // mProfCycleWrap. It clears the flushed flag.
    func (c *mProfCycleHolder) increment() {
    	// We explicitly wrap mProfCycle rather than depending on
    	// uint wraparound because the memRecord.future ring does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// as the heap is likely fragmented after a reduction in heap size.
    	minHeapForMetadataHugePages = 1 << 30
    )
    
    // physPageSize is the size in bytes of the OS's physical pages.
    // Mapping and unmapping operations must be done at multiples of
    // physPageSize.
    //
    // This must be set by the OS init code (typically in osinit) before
    // mallocinit.
    var physPageSize uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	p.Pos = pos.String()
    }
    
    // ImportPathError is a type of error that prevents a package from being loaded
    // for a given import path. When such a package is loaded, a *Package is
    // returned with Err wrapping an ImportPathError: the error is attached to
    // the imported package, not the importing package.
    //
    // The string returned by ImportPath must appear in the string returned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			cb := NewClusterBuilder(proxy, &model.PushRequest{Push: cg.PushContext()}, nil)
    
    			tt.cluster.CommonLbConfig = &cluster.Cluster_CommonLbConfig{}
    
    			ec := newClusterWrapper(tt.cluster)
    			// Set cluster wrapping with HTTP2 options if port protocol is HTTP2
    			if tt.port.Protocol == protocol.HTTP2 {
    				setH2Options(ec)
    			}
    			destRule := proxy.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, proxy, tt.service.Hostname)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/archivesWithJavaPlugin/groovy",files="build.gradle[tags=create-uber-jar-example]"]
    ====
    
    In this case, we're taking the runtime dependencies of the project — `configurations.runtimeClasspath.files` — and wrapping each of the JAR files with the `zipTree()` method.
    The result is a collection of ZIP file trees, the contents of which are copied into the uber JAR alongside the application classes.
    
    [[sec:creating_directories_example]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	men := uint32(32 - bits.TrailingZeros32(^mask))
    	// Check for a wrapping mask (e.g bits at 0 and 31)
    	if mb == 0 && me == 32 {
    		// swap the inverted values
    		mb, me = men, mbn
    	}
    
    	// Validate mask is of the binary form 1+0*1+ or 0*1+0*
    	// Isolate rightmost 1 (if none 0) and add.
    	v := mask
    	vp := (v & -v) + v
    	// Likewise, check for the wrapping (inverted) case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
        semantic ordering relationships between ops as determined by side effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	}
    	err := r.rows.Scan(dest...)
    	if err != nil {
    		return err
    	}
    	// Make sure the query can be processed to completion with no errors.
    	return r.rows.Close()
    }
    
    // Err provides a way for wrapping packages to check for
    // query errors without calling [Row.Scan].
    // Err returns the error, if any, that was encountered while running the query.
    // If this error is not nil, this error will also be returned from [Row.Scan].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          } else {
            DCOMMENT("-> not refining shape element #" << shape_elts.index());
            shape.push_back(std::get<0>(shape_elts.value()));
          }
        }
      }
    
      // Some tensor have an element type wrapping a subtensor, like resource and
      // variants. In this case we may recurse on the wrapped subtype.
      // `element_type` will contain the refined inferred element type for the
      // returned type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	// https://github.com/golang/go/issues/52690
    	if b.gccSupportsFlag(compiler, "-Wl,--no-gc-sections") {
    		a = append(a, "-Wl,--no-gc-sections")
    	}
    
    	// disable word wrapping in error messages
    	a = append(a, "-fmessage-length=0")
    
    	// Tell gcc not to include the work directory in object files.
    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if workdir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top