Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for asmand (0.15 sec)

  1. src/cmd/compile/internal/syntax/scanner.go

    		goto assignop
    
    	case '%':
    		s.nextch()
    		s.op, s.prec = Rem, precMul
    		goto assignop
    
    	case '&':
    		s.nextch()
    		if s.ch == '&' {
    			s.nextch()
    			s.op, s.prec = AndAnd, precAndAnd
    			s.tok = _Operator
    			break
    		}
    		s.op, s.prec = And, precMul
    		if s.ch == '^' {
    			s.nextch()
    			s.op = AndNot
    		}
    		goto assignop
    
    	case '|':
    		s.nextch()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. pkg/test/echo/server/endpoint/http.go

    	}
    
    	return codes, nil
    }
    
    // code must be HTTP response code
    func validateCodeAndSlices(codecount string) (codeAndSlices, error) {
    	flavor := strings.Split(codecount, ":")
    
    	// Demand code or code:number
    	if len(flavor) == 0 || len(flavor) > 2 {
    		return codeAndSlices{http.StatusBadRequest, 9999},
    			fmt.Errorf("invalid %q (want code or code:count)", codecount)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
             * On close, we remove our details from info region and release the exclusive lock on the state region.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "`foo\tbar`", 0, 0},
    	{_Literal, "`\r`", 0, 0},
    
    	// operators
    	{_Operator, "!", Not, 0},
    	{_Operator, "~", Tilde, 0},
    
    	{_Operator, "||", OrOr, precOrOr},
    
    	{_Operator, "&&", AndAnd, precAndAnd},
    
    	{_Operator, "==", Eql, precCmp},
    	{_Operator, "!=", Neq, precCmp},
    	{_Operator, "<", Lss, precCmp},
    	{_Operator, "<=", Leq, precCmp},
    	{_Operator, ">", Gtr, precCmp},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    import (
    	"internal/goarch"
    	"internal/goos"
    )
    
    // Caller reports file and line number information about function invocations on
    // the calling goroutine's stack. The argument skip is the number of stack frames
    // to ascend, with 0 identifying the caller of Caller.  (For historical reasons the
    // meaning of skip differs between Caller and [Callers].) The return values report the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/mvs.go

    // gives access to the comparison operation.
    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. docs/de/docs/help-fastapi.md

    Wenn Sie dann „Watching“ statt „Releases only“ auswählen, erhalten Sie Benachrichtigungen, wenn jemand ein neues Issue eröffnet oder eine neue Frage stellt. Sie können auch spezifizieren, dass Sie nur über neue Issues, Diskussionen, PRs, usw. benachrichtigt werden möchten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		syntax.Div: allNumeric,
    		syntax.Rem: allInteger,
    
    		syntax.And:    allInteger,
    		syntax.Or:     allInteger,
    		syntax.Xor:    allInteger,
    		syntax.AndNot: allInteger,
    
    		syntax.AndAnd: allBoolean,
    		syntax.OrOr:   allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      }
    
      /**
       * Returns an immutable <i>view</i> of this array's values as a {@code List}; note that {@code
       * double} values are boxed into {@link Double} instances on demand, which can be very expensive.
       * The returned list should be used once and discarded. For any usages beyond that, pass the
       * returned list to {@link com.google.common.collect.ImmutableList#copyOf(Collection)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/ImmutableLongArray.java

      }
    
      /**
       * Returns an immutable <i>view</i> of this array's values as a {@code List}; note that {@code
       * long} values are boxed into {@link Long} instances on demand, which can be very expensive. The
       * returned list should be used once and discarded. For any usages beyond that, pass the returned
       * list to {@link com.google.common.collect.ImmutableList#copyOf(Collection) ImmutableList.copyOf}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top