Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for checkChar (0.23 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    func (rst *rustState) advance(add int) {
    	if len(rst.str) < add {
    		panic("internal error")
    	}
    	rst.str = rst.str[add:]
    	rst.off += add
    }
    
    // checkChar requires that the next character in the string be c,
    // and advances past it.
    func (rst *rustState) checkChar(c byte) {
    	if len(rst.str) == 0 || rst.str[0] != c {
    		rst.fail("expected " + string(c))
    	}
    	rst.advance(1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) unnamedTypeName() AST {
    	st.checkChar('U')
    	st.checkChar('t')
    	num := st.compactNumber()
    	ret := &UnnamedType{Num: num}
    	st.subs.add(ret)
    	return ret
    }
    
    // constraintExpr parses a constraint expression. This is just a
    // regular expression, but template parameters are handled specially.
    func (st *state) constraintExpr() AST {
    	st.checkChar('Q')
    
    	hold := st.parsingConstraint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        checkMd5("6f630fad67cda0ee1fb1f562db3aa53e", key, data);
      }
    
      private static void checkSha1(String expected, byte[] key, String data) {
        checkSha1(expected, key, data.getBytes(UTF_8));
      }
    
      private static void checkSha1(String expected, byte[] key, byte[] data) {
        checkHmac(expected, Hashing.hmacSha1(key), data);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        checkMd5("6f630fad67cda0ee1fb1f562db3aa53e", key, data);
      }
    
      private static void checkSha1(String expected, byte[] key, String data) {
        checkSha1(expected, key, data.getBytes(UTF_8));
      }
    
      private static void checkSha1(String expected, byte[] key, byte[] data) {
        checkHmac(expected, Hashing.hmacSha1(key), data);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      wget -P "${download_dir}" "https://github.com/coredns/corefile-migration/releases/download/v1.0.17/corefile-tool-${host_arch}" >/dev/null 2>&1
    
      local -r checkSHA=$(sha256sum "${download_dir}/corefile-tool-${host_arch}" | cut -d " " -f 1)
      if [[ "${checkSHA}" != "${corefile_tool_SHA}" ]]; then
        echo "!!! CheckSum for the CoreDNS migration tool did not match !!!" >&2
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//  	}
    	//  }
    	InvalidExprSwitch
    
    	/* control flow > select */
    
    	// InvalidSelectCase occurs when a select case is not a channel send or
    	// receive.
    	//
    	// Example:
    	//  func checkChan(c <-chan int) bool {
    	//  	select {
    	//  	case c:
    	//  		return true
    	//  	default:
    	//  		return false
    	//  	}
    	//  }
    	InvalidSelectCase
    
    	/* control flow > labels and jumps */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	//  	}
    	//  }
    	InvalidExprSwitch
    
    	// InvalidSelectCase occurs when a select case is not a channel send or
    	// receive.
    	//
    	// Example:
    	//  func checkChan(c <-chan int) bool {
    	//  	select {
    	//  	case c:
    	//  		return true
    	//  	default:
    	//  		return false
    	//  	}
    	//  }
    	InvalidSelectCase
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.rules; public synchronized class ErrorCollector extends Verifier { private java.util.List errors; public void ErrorCollector(); protected void verify() throws Throwable; public void addError(Throwable); public void checkThat(Object, org.hamcrest.Matcher); public void checkThat(String, Object, org.hamcrest.Matcher); public Object checkSucceeds(java.util.concurrent.Callable); public void checkThrows(Class, org.junit.function.ThrowingRunnable); } org/junit/rules/ErrorCollector$1.class package org.junit.rules;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top