Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 761 for course (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/cors.go

    // See github.com/emicklei/go-restful/blob/master/examples/cors/restful-CORS-filter.go, and
    // github.com/emicklei/go-restful/blob/master/examples/basicauth/restful-basic-authentication.go
    // Or, for a more detailed implementation use https://github.com/martini-contrib/cors
    // or implement CORS at your proxy layer.
    
    // WithCORS is a simple CORS implementation that wraps an http Handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 13:59:10 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/runtime/core/core.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libtf/runtime/core/core.h"
    
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/tfe_context_internal.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/c/tf_status_internal.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/cors.md

    이 경우 미들웨어는 들어오는 요청을 가로채 적절한 CORS 헤더와, 정보 제공을 위한 `200` 또는 `400` 응답으로 응답합니다.
    
    ### 단순한 요청
    
    `Origin` 헤더를 가진 모든 요청. 이 경우 미들웨어는 요청을 정상적으로 전달하지만, 적절한 CORS 헤더를 응답에 포함시킵니다.
    
    ## 더 많은 정보
    
    <abbr title="교차-출처 리소스 공유">CORS</abbr>에 대한 더 많은 정보를 알고싶다면, <a href="https://developer.mozilla.org/ko/docs/Web/HTTP/CORS" class="external-link" target="_blank">Mozilla CORS 문서</a>를 참고하기 바랍니다.
    
    !!! note "기술적 세부 사항"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 07 14:21:23 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/util/documentation.go

    // - Paragraphs are blocks of text divided by one or more empty lines or lines consisting only of "space" characters.
    // - Paragraphs are spaced by precisely one empty line in the output.
    // - A line break can be forced by adding a couple of empty spaces at the end of a text line.
    // - All indentation is removed. The resulting output is not indented.
    func LongDesc(s string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedImmutableManagedValue.java

        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            asSnapshot().appendToHasher(hasher);
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isInstance(getValue())) {
                return type.cast(getValue());
            }
            ManagedFactory factory = managedFactoryRegistry.lookup(getValue().getFactoryId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractIsolatedMap.java

                map.put(entry.getKey().isolate(), entry.getValue().isolate());
            }
            return map;
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/FileValueSnapshot.java

        public ValueSnapshot asSnapshot() {
            return this;
        }
    
        @Override
        public File isolate() {
            return new File(getValue());
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isAssignableFrom(File.class)) {
                return type.cast(isolate());
            }
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/NullValueSnapshot.java

        @Override
        public ValueSnapshot asSnapshot() {
            return this;
        }
    
        @Override
        public Object isolate() {
            return null;
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            return null;
        }
    
        @Override
        public String toString() {
            return "NULL";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

    import org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation;
    import org.gradle.api.internal.DynamicObjectAware;
    import org.gradle.api.internal.coerce.MethodArgumentsTransformer;
    import org.gradle.api.internal.coerce.PropertySetTransformer;
    import org.gradle.api.internal.coerce.StringToEnumTransformer;
    import org.gradle.api.internal.provider.support.LazyGroovySupport;
    import org.gradle.api.provider.HasConfigurableValue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedManagedValue.java

        }
    
        @Override
        public Object isolate() {
            return factory.fromState(targetType, state.isolate());
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isAssignableFrom(targetType)) {
                return type.cast(isolate());
            }
            return type.cast(factory.fromState(type, state.isolate()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top