Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for fals (0.17 sec)

  1. ChangeLog.md

    - [`KT-64197`](https://youtrack.jetbrains.com/issue/KT-64197) K2: Code fragments are only supported in JVM
    - [`KT-62357`](https://youtrack.jetbrains.com/issue/KT-62357) K2 IDE. False positive on generated component methods and false negative on getter of `@JvmRecord` classes in Java
    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. pkg/proxy/iptables/proxier_test.go

    				"node to ClusterIP": {
    					masq: ptr.To(false),
    				},
    				"node to ClusterIP with eTP:Local": {
    					masq: ptr.To(false),
    				},
    				"node to ClusterIP with iTP:Local": {
    					masq: ptr.To(false),
    				},
    				"external to ClusterIP": {
    					masq: ptr.To(false),
    				},
    				"external to ClusterIP with eTP:Local": {
    					masq: ptr.To(false),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %res_m4 = "tfl.cumsum"(%arg, %axis_m4) {exclusive = false, reverse = false} : (tensor<1x2x1x3xf32>, tensor<i32>) -> tensor<1x2x1x3xf32>  // Eliminated
      %res_m3 = "tfl.cumsum"(%arg, %axis_m3) {exclusive = false, reverse = false} : (tensor<1x2x1x3xf32>, tensor<i32>) -> tensor<1x2x1x3xf32>
      %res_m2 = "tfl.cumsum"(%arg, %axis_m2) {exclusive = false, reverse = false} : (tensor<1x2x1x3xf32>, tensor<i32>) -> tensor<1x2x1x3xf32>  // Eliminated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostNetwork = 11;
    
      // Use the host's pid namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostPID = 12;
    
      // Use the host's ipc namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    							Name:    "version",
    							Served:  true,
    							Storage: false,
    						},
    						{
    							Name:    "version2",
    							Served:  true,
    							Storage: false,
    						},
    					},
    					Conversion: &apiextensions.CustomResourceConversion{
    						Strategy: apiextensions.ConversionStrategyType("None"),
    					},
    					PreserveUnknownFields: pointer.BoolPtr(false),
    					Validation: &apiextensions.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %39 = "tf.All"(%38, %9) {device = "", keep_dims = false} : (tensor<i1>, tensor<0xi32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"tty":                      "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
    }
    
    func (Container) SwaggerDoc() map[string]string {
    	return map_Container
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite386.go

    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386NEGL(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (NEGL (MOVLconst [c]))
    	// result: (MOVLconst [-c])
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(-c)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage_test.go

    	} else {
    		pol := *after.Spec.IPFamilyPolicy
    		fams := len(after.Spec.IPFamilies)
    		clus := 1
    		if storage.secondaryIPFamily != "" {
    			clus = 2
    		}
    		if pol == api.IPFamilyPolicySingleStack && fams != 1 {
    			t.Errorf("%s: expected 1 ipFamily, got %d", callName(before, after), fams)
    		} else if pol == api.IPFamilyPolicyRequireDualStack && fams != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// If this option is set, the ports that will be used must be specified.
    	// Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostNetwork bool `json:"hostNetwork,omitempty" protobuf:"varint,11,opt,name=hostNetwork"`
    	// Use the host's pid namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostPID bool `json:"hostPID,omitempty" protobuf:"varint,12,opt,name=hostPID"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top