Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for 0_7070 (0.15 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFilePermissions.java

        protected static int getUserPartOf(int unixNumeric) {
            return (unixNumeric & 0_700) >> 6;
        }
    
        protected static String getUserPartOf(String unixSymbolic) {
            return unixSymbolic.substring(0, 3);
        }
    
        @SuppressWarnings("OctalInteger")
        protected static int getGroupPartOf(int unixNumeric) {
            return (unixNumeric & 0_070) >> 3;
        }
    
        protected static String getGroupPartOf(String unixSymbolic) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/mips64/asm.go

    	case objabi.R_ADDRMIPSTLS:
    		// thread pointer is at 0x7000 offset from the start of TLS data area
    		t := ldr.SymValue(rs) + r.Add() - 0x7000
    		if target.IsOpenbsd() {
    			// OpenBSD mips64 does not currently offset TLS by 0x7000,
    			// as such we need to add this back to get the correct offset.
    			t += 0x7000
    		}
    		if t < -32768 || t >= 32678 {
    			ldr.Errorf(s, "TLS offset out of range %d", t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. requirements-tests.txt

    coverage[toml] >= 6.5.0,< 8.0
    mypy ==1.8.0
    ruff ==0.2.0
    dirty-equals ==0.6.0
    # TODO: once removing databases from tutorial, upgrade SQLAlchemy
    # probably when including SQLModel
    sqlalchemy >=1.3.18,<1.4.43
    databases[sqlite] >=0.3.2,<0.7.0
    flask >=1.1.2,<3.0.0
    anyio[trio] >=3.2.1,<4.0.0
    PyJWT==2.8.0
    pyyaml >=5.3.1,<7.0.0
    passlib[bcrypt] >=1.7.2,<2.0.0
    
    # types
    types-ujson ==5.7.0.1
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 468 bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_simulation_test.go

    					Call: simulation.Call{
    						Port:       8080,
    						HostHeader: "example.com",
    						Protocol:   simulation.HTTP,
    					},
    					Result: simulation.Result{
    						ListenerMatched:    "0.0.0.0_8080",
    						ClusterMatched:     "outbound|80||a.default",
    						RouteConfigMatched: "http.8080",
    						VirtualHostMatched: "example.com:80",
    					},
    				},
    				{
    					Name: "target port 2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ALPN-NoMatch

    00000050  00 ff 01 00 00 91 00 0b  00 04 03 00 01 02 00 0a  |................|
    00000060  00 0c 00 0a 00 1d 00 17  00 1e 00 19 00 18 00 23  |...............#|
    00000070  00 00 00 10 00 10 00 0e  06 70 72 6f 74 6f 32 06  |.........proto2.|
    00000080  70 72 6f 74 6f 31 00 16  00 00 00 17 00 00 00 0d  |proto1..........|
    00000090  00 1e 00 1c 04 03 05 03  06 03 08 07 08 08 08 09  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/envoy/agent_test.go

    )
    
    var invalidStats = ""
    
    var downstreamCxPostiveAcStats = "http.admin.downstream_cx_active: 2 \n" +
    	"http.agent.downstream_cx_active: 0 \n" +
    	"http.inbound_0.0.0.0_8080.downstream_cx_active: 0 \n" +
    	"listener.0.0.0.0_15001.downstream_cx_active: 0 \n" +
    	"listener.0.0.0.0_15006.downstream_cx_active: 0 \n" +
    	"listener.0.0.0.0_15021.downstream_cx_active: 0 \n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. istioctl/pkg/authz/testdata/configdump.yaml

          },
          "last_updated": "2023-06-20T09:07:41.944Z"
         }
        },
        {
         "name": "0.0.0.0_9080",
         "active_state": {
          "version_info": "2023-06-20T09:07:41Z/3",
          "listener": {
           "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
           "name": "0.0.0.0_9080",
           "address": {
            "socket_address": {
             "address": "0.0.0.0",
             "port_value": 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  8. src/cmd/link/internal/mips/asm.go

    		}
    
    		return applyrel(target.Arch, ldr, rt, r.Off(), s, val, t), noExtReloc, isOk
    	case objabi.R_ADDRMIPSTLS:
    		// thread pointer is at 0x7000 offset from the start of TLS data area
    		t := ldr.SymValue(rs) + r.Add() - 0x7000
    		if t < -32768 || t >= 32678 {
    			ldr.Errorf(s, "TLS offset out of range %d", t)
    		}
    		return applyrel(target.Arch, ldr, rt, r.Off(), s, val, t), noExtReloc, isOk
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/operand_test.go

    	{"$((1<<63)-1)", "$9223372036854775807"},
    	{"$(-64*1024)", "$-65536"},
    	{"$(1024 * 8)", "$8192"},
    	{"$-1", "$-1"},
    	{"$-24(R4)", "$-24(R4)"},
    	{"$0", "$0"},
    	{"$0(R1)", "$(R1)"},
    	{"$0.5", "$(0.5)"},
    	{"$0x7000", "$28672"},
    	{"$0x88888eef", "$2290650863"},
    	{"$1", "$1"},
    	{"$_main<>(SB)", "$_main<>(SB)"},
    	{"$argframe(FP)", "$argframe(FP)"},
    	{"$runtime·tlsg(SB)", "$runtime.tlsg(SB)"},
    	{"$~3", "$-4"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    			FilterChains: []listenertest.FilterChainTest{
    				{
    					Name:           "0.0.0.0_8080",
    					Type:           listenertest.MTLSHTTP,
    					HTTPFilters:    httpFilters,
    					NetworkFilters: httpNetworkFilters,
    					TotalMatch:     true,
    				},
    				{
    					Name:           "0.0.0.0_8080",
    					Type:           listenertest.PlainTCP,
    					HTTPFilters:    httpFilters,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top