Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for Adjustment (0.15 sec)

  1. pkg/kubelet/metrics/collectors/volume_stats_test.go

    }
    
    func TestVolumeStatsCollector(t *testing.T) {
    	ctx := context.Background()
    	// Fixed metadata on type and help text. We prepend this to every expected
    	// output so we only have to modify a single place when doing adjustments.
    	const metadata = `
    		# HELP kubelet_volume_stats_available_bytes [ALPHA] Number of available bytes in the volume
    		# TYPE kubelet_volume_stats_available_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testserver/test_server.go

    		ports = append(ports, l.Addr().(*net.TCPAddr).Port)
    	}
    	return ports, nil
    }
    
    // NewTestConfig returns a configuration for an embedded etcd server.
    // The configuration is based on embed.NewConfig(), with the following adjustments:
    //   - sets UnsafeNoFsync = true to improve test performance (only reasonable in a test-only
    //     single-member server we never intend to restart or keep data from)
    //   - uses free ports for client and peer listeners
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 06 11:40:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    If no such version is found, Gradle fails with an error showing the conflicting declarations.
    If this happens you can adjust your dependencies or dependency constraints declarations, or make other adjustments to the transitive dependencies if needed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/post_quantize.cc

            if (op->hasOneUse() &&
                op->user_begin()->hasTrait<OpTrait::IsTerminator>())
              return failure();
          }
          // If the quantize op is a requantize op, it is being used in other scale
          // adjustments and should be kept. Instead, moving dequantize op before
          // the requantize op to remove the unnecessary requantize op.
          if (auto qtype =
                  QuantizedType::getQuantizedElementType(q.getArg().getType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    			} else if ctxt.Arch.Family == sys.I386 {
    				// On 386 PC-relative addressing (for non-call/jmp instructions)
    				// assumes that the previous instruction loaded the PC of the end
    				// of that instruction into CX, so the adjustment is relative to
    				// that.
    				r.Add += int64(r.Off) - p.Pc + int64(r.Siz)
    			}
    		}
    		if r.Type == objabi.R_GOTPCREL && ctxt.Arch.Family == sys.I386 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/post_quantize.cc

          if (!q->getAttr(kVolatileOpAttrName)) return failure();
    
          // If the quantize op is a requantize op, it is being used in other scale
          // adjustments and should be kept. Instead, move dequantize op before the
          // requantize op to remove the unnecessary requantize op.
          if (const QuantizedType qtype =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

               assert info.getNumberOfRunningDaemons() == ${numDaemons}
               assert info.getIdleTimeout() == 120000
               assert info.getStartedAt() <= System.currentTimeMillis() + 1000 //accept slight clock adjustments while the test is running
               assert info.isSingleUse() == ${singleUse}
            """
        }
    
        static String waitForExpirationTask() {
            """
            task waitForExpiration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    type MappingSources map[string][]struct {
    	Source string // URL of the source the mapping was collected from
    	Start  uint64 // delta applied to addresses from this source (to represent Merge adjustments)
    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/sparsetree.go

    }
    
    func (s *SparseTreeNode) Entry() int32 {
    	return s.entry
    }
    
    func (s *SparseTreeNode) Exit() int32 {
    	return s.exit
    }
    
    const (
    	// When used to lookup up definitions in a sparse tree,
    	// these adjustments to a block's entry (+adjust) and
    	// exit (-adjust) numbers allow a distinction to be made
    	// between assignments (typically branch-dependent
    	// conditionals) occurring "before" the block (e.g., as inputs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    type MappingSources map[string][]struct {
    	Source string // URL of the source the mapping was collected from
    	Start  uint64 // delta applied to addresses from this source (to represent Merge adjustments)
    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top