Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 257 for moshix (0.11 sec)

  1. src/math/cmplx/tan.go

    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   moshier@na-net.ornl.gov
    
    // Complex circular tangent
    //
    // DESCRIPTION:
    //
    // If
    //     z = x + iy,
    //
    // then
    //
    //           sin 2x  +  i sinh 2y
    //     w  =  --------------------.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/internal/poll/export_posix_test.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || windows
    
    // Export guts for testing on posix.
    // Since testing imports os and os imports internal/poll,
    // the internal/poll tests can not be in package poll.
    
    package poll
    
    func (fd *FD) EOFError(n int, err error) error {
    	return fd.eofError(n, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 432 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_goroot_symlink.txt

    [short] skip 'copies the cmd/go binary'
    [!symlink] skip 'tests symlink-specific behavior'
    [GOOS:darwin] skip 'Lstat on darwin does not conform to POSIX pathname resolution; see #59586'
    [GOOS:ios] skip 'Lstat on ios does not conform to POSIX pathname resolution; see #59586'
    
    # Ensure that the relative path to $WORK/lib/goroot/src from $PWD is a different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse_test.go

    		}
    		if re, err := Parse(regexp, POSIX); err == nil {
    			t.Errorf("Parse(%#q, POSIX) = %s, should have failed", regexp, dump(re))
    		}
    	}
    	for _, regexp := range onlyPerl {
    		if _, err := Parse(regexp, Perl); err != nil {
    			t.Errorf("Parse(%#q, Perl): %v", regexp, err)
    		}
    		if re, err := Parse(regexp, POSIX); err == nil {
    			t.Errorf("Parse(%#q, POSIX) = %s, should have failed", regexp, dump(re))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build aix || (solaris && !illumos)
    
    // This code implements the filelock API using POSIX 'fcntl' locks, which attach
    // to an (inode, process) pair rather than a file descriptor. To avoid unlocking
    // files prematurely when the same file is opened through different descriptors,
    // we allow only one read-lock at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

        "imagePullSecrets": [],
        "istioNamespace": "istio-system",
        "istiod": {
          "enableAnalysis": false
        },
        "logAsJson": false,
        "logging": {
          "level": "default:info"
        },
        "meshID": "",
        "meshNetworks": {},
        "mountMtlsCerts": false,
        "multiCluster": {
          "clusterName": "",
          "enabled": false
        },
        "namespace": "istio-system",
        "network": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. cmd/xl-storage_windows_test.go

    		{string(bytes.Repeat([]byte("界"), 85)), true},
    		// Each path component must be <= 255 bytes long.
    		{string(bytes.Repeat([]byte("界"), 280)), false},
    		{`/p/q/r/s/t`, true},
    	}
    	dir := t.TempDir()
    
    	// Instantiate posix object to manage a disk
    	fs, err := newLocalXLStorage(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Create volume to use in conjunction with other StorageAPI's file API(s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 29 06:35:16 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. samples/open-telemetry/loki/REAME.md

              grpc:
              http:
        processors:
          batch:
          attributes:
            actions:
            - action: insert
              key: loki.attribute.labels
              value: podName, namespace,cluster,meshID
        exporters:
          loki:
            endpoint: "http://loki.istio-system.svc:3100/loki/api/v1/push"
          logging:
            loglevel: debug
        extensions:
          health_check:
        service:
          extensions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/internal/syscall/unix/nofollow_posix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix && !dragonfly && !freebsd && !netbsd
    
    package unix
    
    import "syscall"
    
    // POSIX.1-2008 says it's ELOOP. Most platforms follow:
    //
    //   - aix: O_NOFOLLOW not documented (https://www.ibm.com/docs/ssw_aix_73/o_bostechref/open.html), assuming ELOOP
    //   - android: see linux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 933 bytes
    - Viewed (0)
  10. src/regexp/syntax/simplify_test.go

    	{`a|b`, `[ab]`},
    	{`ab|cd`, `ab|cd`},
    	{`(ab)*`, `(ab)*`},
    	{`(ab)+`, `(ab)+`},
    	{`(ab)?`, `(ab)?`},
    	{`.`, `(?s:.)`},
    	{`^`, `(?m:^)`},
    	{`$`, `(?m:$)`},
    	{`[ac]`, `[ac]`},
    	{`[^ac]`, `[^ac]`},
    
    	// Posix character classes
    	{`[[:alnum:]]`, `[0-9A-Za-z]`},
    	{`[[:alpha:]]`, `[A-Za-z]`},
    	{`[[:blank:]]`, `[\t ]`},
    	{`[[:cntrl:]]`, `[\x00-\x1f\x7f]`},
    	{`[[:digit:]]`, `[0-9]`},
    	{`[[:graph:]]`, `[!-~]`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top