Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for safePos (0.13 sec)

  1. src/go/parser/parser.go

    	token.COLON:     true,
    	token.SEMICOLON: true,
    	token.RPAREN:    true,
    	token.RBRACK:    true,
    	token.RBRACE:    true,
    }
    
    // safePos returns a valid file position for a given position: If pos
    // is valid to begin with, safePos returns pos. If pos is out-of-range,
    // safePos returns the EOF position.
    //
    // This is hack to work around "artificial" end positions in the AST which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. pkg/kube/client_factory.go

    	// now do a simple collapse of non-AZ09 characters.  Collisions are possible but unlikely.  Even if we do collide the problem is short lived
    	safeHost := overlyCautiousIllegalFileCharacters.ReplaceAllString(schemelessHost, "_")
    	return filepath.Join(parentDir, safeHost)
    }
    
    func (c *clientFactory) ToRESTMapper() (meta.RESTMapper, error) {
    	return c.expander.Get()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    		case ir.OASOP:
    			n := n.(*ir.AssignOpStmt)
    			if !safeLHS(n.X) {
    				return true
    			}
    
    		case ir.OAS:
    			n := n.(*ir.AssignStmt)
    			if !safeLHS(n.X) {
    				return true
    			}
    
    		case ir.OAS2, ir.OAS2DOTTYPE, ir.OAS2FUNC, ir.OAS2MAPR, ir.OAS2RECV:
    			n := n.(*ir.AssignListStmt)
    			for _, lhs := range n.Lhs {
    				if !safeLHS(lhs) {
    					return true
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/abi.go

    func makeABIWrapper(f *ir.Func, wrapperABI obj.ABI) {
    	if base.Debug.ABIWrap != 0 {
    		fmt.Fprintf(os.Stderr, "=-= %v to %v wrapper for %v\n", wrapperABI, f.ABI, f)
    	}
    
    	// Q: is this needed?
    	savepos := base.Pos
    	savedcurfn := ir.CurFunc
    
    	pos := base.AutogeneratedPos
    	base.Pos = pos
    
    	// At the moment we don't support wrapping a method, we'd need machinery
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	// now do a simple collapse of non-AZ09 characters.  Collisions are possible but unlikely.  Even if we do collide the problem is short lived
    	safeHost := overlyCautiousIllegalFileCharacters.ReplaceAllString(schemelessHost, "_")
    	return filepath.Join(parentDir, safeHost)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

    import org.jetbrains.kotlin.types.expressions.OperatorConventions
    import org.jetbrains.kotlin.types.typeUtil.contains
    import org.jetbrains.kotlin.util.OperatorNameConventions
    import org.jetbrains.kotlin.utils.addToStdlib.safeAs
    import org.jetbrains.kotlin.utils.checkWithAttachment
    
    internal class KaFe10Resolver(
        override val analysisSession: KaFe10Session,
    ) : KaAbstractResolver(), KaFe10SessionComponent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.util.OperatorNameConventions
    import org.jetbrains.kotlin.util.OperatorNameConventions.EQUALS
    import org.jetbrains.kotlin.utils.addIfNotNull
    import org.jetbrains.kotlin.utils.addToStdlib.safeAs
    import org.jetbrains.kotlin.utils.exceptions.checkWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.rethrowExceptionWithDetails
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Monitor.java

     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
     * logical conditions being awaited.
     *
     * <pre>{@code
     * public class SafeBox<V> {
     *   private V value;
     *
     *   public synchronized V get() throws InterruptedException {
     *     while (value == null) {
     *       wait();
     *     }
     *     V result = value;
     *     value = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Monitor.java

     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
     * logical conditions being awaited.
     *
     * <pre>{@code
     * public class SafeBox<V> {
     *   private V value;
     *
     *   public synchronized V get() throws InterruptedException {
     *     while (value == null) {
     *       wait();
     *     }
     *     V result = value;
     *     value = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top