Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for dial (0.04 sec)

  1. src/os/exec_windows.go

    			}
    		case '"':
    			b = appendBSBytes(b, nslash/2)
    			if nslash%2 == 0 {
    				// use "Prior to 2008" rule from
    				// http://daviddeley.com/autohotkey/parameters/parameters.htm
    				// section 5.2 to deal with double double quotes
    				if inquote && len(cmd) > 1 && cmd[1] == '"' {
    					b = append(b, c)
    					cmd = cmd[1:]
    				}
    				inquote = !inquote
    			} else {
    				b = append(b, c)
    			}
    			nslash = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    			t.Errorf("%v: error decoding %v: %v", initial, string(b), err)
    		}
    		if !final.Equal(&initial) {
    			diag, err := cbor.Diagnose(b)
    			if err != nil {
    				t.Logf("failed to produce diagnostic encoding of 0x%x: %v", b, err)
    			}
    			t.Errorf("expected equal: %v, %v (cbor was '%s')", initial, final, diag)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

        fun toSpec(tree: MinimalFileTree): FileTreeSpec =
            toSpecOrNull(tree) ?: cannotCreateSpecFor(tree)
    
        private
        fun toSpecOrNull(tree: MinimalFileTree): FileTreeSpec? = when (tree) {
            // TODO - deal with tree that is not backed by a file
            is ZipFileTree -> ZipTreeSpec(tree.backingFileProvider)
            is TarFileTree -> TarTreeSpec(tree.backingFileProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	return rb.buildRestore(rb.rules.rulesv6)
    }
    
    // AppendVersionedRule is a wrapper around AppendRule that substitutes an ipv4/ipv6 specific value
    // in place in the params. This allows appending a dual-stack rule that has an IP value in it.
    func (rb *IptablesRuleBuilder) AppendVersionedRule(ipv4 string, ipv6 string, command log.Command, chain string, table string, params ...string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/internal/poll/fd_wasip1.go

    			break
    		}
    		fd.Dircookie = syscall.Dircookie(next)
    		b = b[size:]
    	}
    
    	// Trim a potentially incomplete trailing entry; this is necessary because
    	// the code in src/os/dir_unix.go does not deal well with partial values in
    	// calls to direntReclen, etc... and ends up causing an early EOF before all
    	// directory entries were consumed. ReadDirent is called with a large enough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/mime/mediatype.go

    		// for simple token characters like numbers and letters.
    		//
    		// If we see an unnecessary backslash escape, assume it is from MSIE
    		// and intended as a literal backslash. This makes Go servers deal better
    		// with MSIE without affecting the way they handle conforming MIME
    		// generators.
    		if r == '\\' && i+1 < len(v) && isTSpecial(rune(v[i+1])) {
    			buffer.WriteByte(v[i+1])
    			i++
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top