Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for unstable (2.53 sec)

  1. ChangeLog.md

    - [`KT-66256`](https://youtrack.jetbrains.com/issue/KT-66256) K2: compiler FIR2IR crash on SAM-conversion to value parameter of in-projected type
    - [`KT-67124`](https://youtrack.jetbrains.com/issue/KT-67124) "Unstable inference behaviour with multiple generic lambdas" compilation error
    - [`KT-59791`](https://youtrack.jetbrains.com/issue/KT-59791) K2: Implement partially constrained lambda analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// If enabled, and ambient is enabled, DNS redirection will be enabled.
    	DnsCapture *wrapperspb.BoolValue `protobuf:"bytes,5,opt,name=dnsCapture,proto3" json:"dnsCapture,omitempty"`
    	// UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
    	Ipv6 *wrapperspb.BoolValue `protobuf:"bytes,7,opt,name=ipv6,proto3" json:"ipv6,omitempty"`
    }
    
    func (x *CNIAmbientConfig) Reset() {
    	*x = CNIAmbientConfig{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	return s.entryNewValue1A(ssa.OpAddr, types.NewPtr(types.Types[types.TUINT8]), lsym, s.sb)
    }
    
    func dumpSourcesColumn(writer *ssa.HTMLWriter, fn *ir.Func) {
    	// Read sources of target function fn.
    	fname := base.Ctxt.PosTable.Pos(fn.Pos()).Filename()
    	targetFn, err := readFuncLines(fname, fn.Pos().Line(), fn.Endlineno.Line())
    	if err != nil {
    		writer.Logf("cannot read sources for function %v: %v", fn, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

      Burstable QoS pods. For Best-Effort/Guaranteed QoS pods, swap would be disabled.
      
      Containers with memory requests equal to their memory limits also won't have
      swap access, and it is a way to opt-out of swap for a single container.
      
      The formula for the swap limit for Burstable QoS pods is:
      `(<memory-request>/<node-memory-capacity>)*<node-swap-capacity>`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            auto sorted = createSortOp(
                &rewriter, op.getLoc(), {keys, current},
                {rewriter.getIntegerType(32), input_type.getElementType()},
                /*dimension=*/-1, /*isStable=*/false,
                /*direction=*/ComparisonDirection::LT);
            current = sorted.getResult(1);
          }
          rewriter.replaceOp(op, current);
          return success();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    // These are valid values for PodQOSClass
    const (
    	// PodQOSGuaranteed is the Guaranteed qos class.
    	PodQOSGuaranteed PodQOSClass = "Guaranteed"
    	// PodQOSBurstable is the Burstable qos class.
    	PodQOSBurstable PodQOSClass = "Burstable"
    	// PodQOSBestEffort is the BestEffort qos class.
    	PodQOSBestEffort PodQOSClass = "BestEffort"
    )
    
    // PodDNSConfig defines the DNS parameters of a pod in addition to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    // +enum
    type PodQOSClass string
    
    const (
    	// PodQOSGuaranteed is the Guaranteed qos class.
    	PodQOSGuaranteed PodQOSClass = "Guaranteed"
    	// PodQOSBurstable is the Burstable qos class.
    	PodQOSBurstable PodQOSClass = "Burstable"
    	// PodQOSBestEffort is the BestEffort qos class.
    	PodQOSBestEffort PodQOSClass = "BestEffort"
    )
    
    // PodDNSConfig defines the DNS parameters of a pod in addition to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    func line() string {
    	_, _, line, ok := stdruntime.Caller(1)
    	var s string
    	if ok {
    		s = fmt.Sprintf("%d", line)
    	} else {
    		s = "<??>"
    	}
    	return s
    }
    
    // This makes the test-helpers testable.
    type testingTInterface interface {
    	Helper()
    	Errorf(format string, args ...interface{})
    }
    
    type fakeTestingT struct {
    	t *testing.T
    }
    
    func (f fakeTestingT) Helper() {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top