Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 308 for Accessible (0.51 sec)

  1. okhttp/src/test/java/okhttp3/CacheControlJvmTest.kt

        assertThat(cacheControl.onlyIfCached).isTrue()
        assertThat(cacheControl.noTransform).isTrue()
        assertThat(cacheControl.immutable).isTrue()
    
        // These members are accessible to response headers only.
        assertThat(cacheControl.sMaxAgeSeconds).isEqualTo(-1)
        assertThat(cacheControl.isPrivate).isFalse()
        assertThat(cacheControl.isPublic).isFalse()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/reflect/visiblefields_test.go

    				}
    
    				// Sanity check that we can actually access the field by the
    				// expected name.
    				gotField1, ok := typ.FieldByName(expect.name)
    				if !ok {
    					t.Fatalf("field %q not accessible by name", expect.name)
    				}
    				if !DeepEqual(gotField1, expectField) {
    					t.Fatalf("unexpected FieldByName result; got %#v want %#v", gotField1, expectField)
    				}
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 08 13:44:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HostSpecifier.java

     *
     * <p>Note that no network lookups are performed by any {@code HostSpecifier} methods. No attempt is
     * made to verify that a provided specifier corresponds to a real or accessible host. Only syntactic
     * and pattern-based checks are performed.
     *
     * <p>If you know that a given string represents a numeric IP address, use {@link InetAddresses} to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    constructed from the 'authorizer' and configured with the\n  request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object. No other metadata properties are accessible.\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '__' escapes to '__underscores__' - '.' escapes to '__dot__' - '-'...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   request resource.
      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object. No other metadata properties are accessible.
      //
      // Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
      // Accessible property names are escaped according to the following rules when accessed in the expression:
      // - '__' escapes to '__underscores__'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// nodeTopology defines which nodes have access to the storage
    	// for which capacity was reported. If not set, the storage is
    	// not accessible from any node in the cluster. If empty, the
    	// storage is accessible from all nodes. This field is
    	// immutable.
    	//
    	// +optional
    	NodeTopology *metav1.LabelSelector `json:"nodeTopology,omitempty" protobuf:"bytes,2,opt,name=nodeTopology"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            dynamicPropertyExpression << [
                'gradleProp',
                'ext.gradleProp'
            ]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19793")
        def "gradle properties must be accessible from task in #build"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            build.setup(this)
    
            when:
            configurationCacheRun build.task()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/net/fd_unix.go

    	}
    	return fd.net + ":" + ls + "->" + rs
    }
    
    func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa syscall.Sockaddr, ret error) {
    	// Do not need to call fd.writeLock here,
    	// because fd is not yet accessible to user,
    	// so no concurrent operations are possible.
    	switch err := connectFunc(fd.pfd.Sysfd, ra); err {
    	case syscall.EINPROGRESS, syscall.EALREADY, syscall.EINTR:
    	case nil, syscall.EISCONN:
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepository.java

                return this;
            }
    
            @Override
            public boolean isUpToDate(String s, @Nullable Long oldValue) {
                // Nothing accessible, always up to date
                return true;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. docs/en/docs/fastapi-cli.md

    It will have **auto-reload disabled** by default.
    
    It will listen on the IP address `0.0.0.0`, which means all the available IP addresses, this way it will be publicly accessible to anyone that can communicate with the machine. This is how you would normally run it in production, for example, in a container.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top