Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for someConf (0.25 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			return "", err
    		}
    	} else if strings.ContainsAny(t, "\"'`") {
    		// Other quotes are reserved both for possible future expansion
    		// and to avoid confusion. For example if someone types 'x'
    		// we want that to be a syntax error and not a literal x in literal quotation marks.
    		return "", fmt.Errorf("unquoted string cannot contain quote")
    	}
    	*s = AutoQuote(t)
    	return t, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	// which should help keep it correct.
    	MOVD	RSP, R13
    	SUB	$16, R13
    	MOVD	R13, RSP
    	MOVD	$0, R4
    	MOVD	R4, 0(RSP)	// Where above code stores g, in case someone looks during debugging.
    	MOVD	R2, 8(RSP)	// Save original stack pointer.
    	BL	(R1)
    	// Restore stack pointer.
    	MOVD	8(RSP), R2
    	MOVD	R2, RSP
    	MOVD	R0, ret+16(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top