Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for logb (0.11 sec)

  1. CHANGELOG/CHANGELOG-1.13.md

    - kubelet now supports `log-file` option to write logs directly to a specific file ([#70917](https://github.com/kubernetes/kubernetes/pull/70917), [@dims](https://github.com/dims))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	types.CalcSize(t)
    	return ssa.LocalSlot{N: n, Type: t, Off: 0, SplitOf: parent, SplitOffset: offset}
    }
    
    // Logf logs a message from the compiler.
    func (e *ssafn) Logf(msg string, args ...interface{}) {
    	if e.log {
    		fmt.Printf(msg, args...)
    	}
    }
    
    func (e *ssafn) Log() bool {
    	return e.log
    }
    
    // Fatalf reports a compiler error and exits.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// Return previous terminated container logs. Defaults to false.
    	// +optional
    	Previous bool `json:"previous,omitempty" protobuf:"varint,3,opt,name=previous"`
    	// A relative time in seconds before the current time from which to show logs. If this value
    	// precedes the time a pod was started, only logs since the pod start will be returned.
    	// If this value is in the future, no logs will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

    * Add Simplified Chinese translation for kubectl ([#45573](https://github.com/kubernetes/kubernetes/pull/45573), [@shiywang](https://github.com/shiywang))
    
    ### **kubectl (CLI)**
    * Features
    
      * `kubectl logs` supports specifying a container name when using label selectors ([#44282](https://github.com/kubernetes/kubernetes/pull/44282), [@derekwaynecarr](https://github.com/derekwaynecarr))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. searchlist */
        String ONLINE_HELP_NAME_SEARCHLIST = "online.help.name.searchlist";
    
        /** The key of the configuration. e.g. log */
        String ONLINE_HELP_NAME_LOG = "online.help.name.log";
    
        /** The key of the configuration. e.g. general */
        String ONLINE_HELP_NAME_GENERAL = "online.help.name.general";
    
        /** The key of the configuration. e.g. role */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Advanced audit policy now supports matching subresources and resource names, but the top level resource no longer matches the subresouce. For example "pods" no longer matches requests to the logs subresource of pods. Use "pods/logs" to match subresources. ([#48836](https://github.com/kubernetes/kubernetes/pull/48836), [@ericchiang](https://github.com/ericchiang))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    }
    
    // -----
    
    // CHECK-LABEL: @log
    func.func @log(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      // CHECK:  mhlo.log %arg0 : tensor<2xf32>
      %0 = "tf.Log"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @log_dynamic
    func.func @log_dynamic(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      // CHECK:  mhlo.log %arg0 : tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.9.md

    * Audit policy supports matching subresources and resource names, but the top level resource no longer matches the subresouce. For example "pods" no longer matches requests to the logs subresource of pods. Use "pods/logs" to match subresources. ([#48836](https://github.com/kubernetes/kubernetes/pull/48836), [@ericchiang](https://github.com/ericchiang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	PspClusterRole string `protobuf:"bytes,11,opt,name=psp_cluster_role,json=pspClusterRole,proto3" json:"psp_cluster_role,omitempty"`
    	// Configuration log level of istio-cni binary. By default, istio-cni sends all logs to the UDS server.
    	// To see the logs, change global.logging.level to cni:debug.
    	LogLevel string `protobuf:"bytes,12,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
    	// Configuration for the CNI Repair controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @log(
    // CHECK-SAME:              %[[VAL_0:.*]]: tensor<2xf32>) -> tensor<2xf32> {
    // CHECK:           %[[VAL_1:.*]] = "tf.Log"(%[[VAL_0]]) : (tensor<2xf32>) -> tensor<2xf32>
    // CHECK:           return %[[VAL_1]] : tensor<2xf32>
    // CHECK:         }
    func.func @log(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      %0 = "mhlo.log"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top