Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for gostringw (0.17 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	return printUint16(uint16(c))
    }
    
    // GoString implements fmt.GoStringer.GoString.
    func (c Class) GoString() string {
    	if n, ok := classNames[c]; ok {
    		return "dnsmessage." + n
    	}
    	return printUint16(uint16(c))
    }
    
    // An OpCode is a DNS operation code.
    type OpCode uint16
    
    // GoString implements fmt.GoStringer.GoString.
    func (o OpCode) GoString() string {
    	return printUint16(uint16(o))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    typedef struct { const char *p; intgo n; } _GoString_;
    typedef struct { char *p; intgo n; intgo c; } _GoBytes_;
    _GoString_ GoString(char *p);
    _GoString_ GoStringN(char *p, int l);
    _GoBytes_ GoBytes(void *p, int n);
    char *CString(_GoString_);
    void *CBytes(_GoBytes_);
    void *_CMalloc(size_t);
    
    __attribute__ ((unused))
    static size_t _GoStringLen(_GoString_ s) { return (size_t)s.n; }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		// and used as the new base register and the offset field in the instruction
    		// can be set to zero.
    
    		// This same problem can happen with gostrings since the final offset is not
    		// known yet, but could be unaligned after the relocation is resolved.
    		// So gostrings are handled the same way.
    
    		// This allows the MOVDload and MOVWload to be generated in more cases and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	// GoString
    	{"%#v", (*PanicGo)(nil), "<nil>"}, // nil pointer special case
    	{"%#v", PanicGo{io.ErrUnexpectedEOF}, "%!v(PANIC=GoString method: unexpected EOF)"},
    	{"%#v", PanicGo{3}, "%!v(PANIC=GoString method: 3)"},
    	// Issue 18282. catchPanic should not clear fmtFlags permanently.
    	{"%#v", []any{PanicGo{3}, PanicGo{3}}, "[]interface {}{%!v(PANIC=GoString method: 3), %!v(PANIC=GoString method: 3)}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    setAttributeValue(result, fessConfig.getLdapAttrGivenName(), o -> user.setGivenName(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrMail(), o -> user.setMail(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrEmployeeNumber(), o -> user.setEmployeeNumber(o.toString()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(base.newBuilder().host("[::1]").build().toString())
          .isEqualTo("http://[::1]/")
        assertThat(base.newBuilder().host("[::0001]").build().toString())
          .isEqualTo("http://[::1]/")
        assertThat(base.newBuilder().host("::1").build().toString())
          .isEqualTo("http://[::1]/")
        assertThat(base.newBuilder().host("::0001").build().toString())
          .isEqualTo("http://[::1]/")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

          return sequence.toString();
        }
    
        @Override
        public String replaceFrom(CharSequence sequence, char replacement) {
          return sequence.toString();
        }
    
        @Override
        public String replaceFrom(CharSequence sequence, CharSequence replacement) {
          checkNotNull(replacement);
          return sequence.toString();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final String execTime = data.getExecTime();
                final String queryTime = Long.toString(data.getQueryTime());
                final String pageSize = Integer.toString(data.getPageSize());
                final String currentPageNumber = Integer.toString(data.getCurrentPageNumber());
                final String allRecordCount = Long.toString(data.getAllRecordCount());
                final String allRecordCountRelation = data.getAllRecordCountRelation();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

      Predicate* start() const { return operands_[0]; }
      Predicate* step() const { return operands_[1]; }
      absl::Span<const string> frame() const { return frame_; }
    
      string ToString() const override {
        return absl::StrCat("{", start()->ToString(), ",&,", step()->ToString(),
                            "}<", absl::StrJoin(frame(), ";"), ">");
      }
    
      Kind kind() const override { return Kind::kAndRecurrence; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                    formatter.append(" of type ");
                    formatter.append(TypeToken.of(returnType).toString());
                    formatter.append(". Allowed property types: ");
                    formatter.append(allowedTypes.stream()
                        .map(TypeToken::toString)
                        .sorted()
                        .collect(Collectors.joining(", "))
                    );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top