Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for closeDot (0.12 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    	// for example, the cgroup for the user session will be something like /user.slice/user-X.slice/session-X.scope, but the cpu and memory
    	// cgroup will be the closest ancestor where accounting is performed (most likely /) on systems that launch docker containers.
    	// as a result, on those systems, you will not get cpu or memory accounting statistics for kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			sym := &types.Sym{Name: ".closureptr", Pkg: types.LocalPkg}
    			cloSlot := s.curfn.NewLocal(src.NoXPos, sym, s.f.Config.Types.BytePtr)
    			cloSlot.SetUsed(true)
    			cloSlot.SetEsc(ir.EscNever)
    			cloSlot.SetAddrtaken(true)
    			s.f.CloSlot = cloSlot
    			s.vars[memVar] = s.newValue1Apos(ssa.OpVarDef, types.TypeMem, cloSlot, s.mem(), false)
    			addr := s.addr(cloSlot)
    			s.store(s.f.Config.Types.BytePtr, addr, clo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	if p.trace {
    		defer un(trace(p, "parseGenericType"))
    	}
    
    	list := p.parseParameterList(name0, typ0, token.RBRACK)
    	closePos := p.expect(token.RBRACK)
    	spec.TypeParams = &ast.FieldList{Opening: openPos, List: list, Closing: closePos}
    	// Let the type checker decide whether to accept type parameters on aliases:
    	// see go.dev/issue/46477.
    	if p.tok == token.ASSIGN {
    		// type alias
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
       * Be sure to declare all constants with the type and subtype in all lowercase. For types that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
       * Be sure to declare all constants with the type and subtype in all lowercase. For types that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. src/image/draw/draw.go

    				eg = clamp(eg + quantErrorCurr[x+1][1]/16)
    				eb = clamp(eb + quantErrorCurr[x+1][2]/16)
    				ea = clamp(ea + quantErrorCurr[x+1][3]/16)
    			}
    
    			if palette != nil {
    				// Find the closest palette color in Euclidean R,G,B,A space:
    				// the one that minimizes sum-squared-difference.
    				// TODO(nigeltao): consider smarter algorithms.
    				bestIndex, bestSum := 0, uint32(1<<32-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/query.go

    //
    //   - v1.2, denoting the latest available tagged version v1.2.x.
    //
    //   - v1.2.3, a semantic version string denoting that tagged version.
    //
    //   - <v1.2.3, <=v1.2.3, >v1.2.3, >=v1.2.3,
    //     denoting the version closest to the target and satisfying the given operator,
    //     with non-prereleases preferred over prereleases.
    //
    //   - a repository commit identifier or tag, denoting that commit.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    In fact, Gradle works with Maven-compatible repositories which makes it easy to migrate your dependencies.
    
    NOTE: One notable difference between the two tools is in how they manage version conflicts. Maven uses a "closest" match algorithm, whereas Gradle picks the newest.
    Don't worry though, you have a lot of control over which versions are selected, as documented in <<dependency_constraints.adoc#dependency-constraints,Managing Transitive Dependencies>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      });
      if (walk_result.wasInterrupted()) return mlir::failure();
      return mlir::success();
    }
    
    void ExtractOutsideCompilation::runOnOperation() {
      // Get runtime devices information from the closest parent module.
      auto module = getOperation();
      if (failed(CheckPreconditions(module))) signalPassFailure();
    
      mlir::TF::RuntimeDevices devices;
      if (failed(tensorflow::GetDevicesFromOp(module, &devices)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            depCompile.scope == MavenScope.Runtime //scope is defined in the dependency declaration and is not replaced
        }
    
        def "if two dependencyManagement entries for the same dependency are combined, the closest wins a conflict"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>parent</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
Back to top