Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for msgctl (0.11 sec)

  1. hack/update-translations.sh

      perl -pi -e 's/CHARSET/UTF-8/' tmp.pot
      perl -pi -e 's/\\(?!n"\n|")/\\\\/g' tmp.pot
      kube::util::ensure-temp-dir
      if msgcat -s tmp.pot > "${KUBE_TEMP}/template.pot"; then
        mv "${KUBE_TEMP}/template.pot" "${TRANSLATIONS}/kubectl/template.pot"
        rm tmp.pot
      else
        echo "Failed to update template.pot"
        exit 1
      fi
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //	LWS            = [CRLF] 1*( SP | HT )
    func isLWS(b byte) bool { return b == ' ' || b == '\t' }
    
    // isCTL reports whether b is a control byte, according
    // to http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2
    //
    //	CTL            = <any US-ASCII control character
    //	                 (octets 0 - 31) and DEL (127)>
    func isCTL(b byte) bool {
    	const del = 0x7f // a CTL
    	return b < ' ' || b == del
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. releasenotes/notes/meshctl-bug-report-context-fix.yaml

    Nick <******@****.***> 1634077974 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 22:32:54 UTC 2021
    - 289 bytes
    - Viewed (0)
  4. samples/addons/extras/skywalking.yaml

              env:
                - name: SW_HEALTH_CHECKER
                  value: default
              readinessProbe:
                exec:
                  command:
                  - /skywalking/bin/swctl
                  - health
                initialDelaySeconds: 30
                periodSeconds: 5
    
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: tracing
      namespace: istio-system
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 21:40:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. pkg/util/filesystem/util_windows.go

    	// for the file (using FSCTL_GET_REPARSE_POINT) and checking for reparse tag: reparseTagSocket
    	// does NOT work in 1809 if the socket file is created within a bind mounted directory by a container
    	// and the FSCTL is issued in the host by the kubelet.
    
    	// If the file does not exist, it cannot be a Unix domain socket.
    	if _, err := os.Stat(filePath); os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top