Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 280 for emberi (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config.go

    	DefaultLegacyAPIPrefix = "/api"
    
    	// APIGroupPrefix is where non-legacy API group will be located.
    	APIGroupPrefix = "/apis"
    )
    
    // Config is a structure used to configure a GenericAPIServer.
    // Its members are sorted roughly in order of importance for composers.
    type Config struct {
    	// SecureServing is required to serve https
    	SecureServing *SecureServingInfo
    
    	// Authentication is the configuration for authentication
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    class BaseTest : public ::testing::Test {
      // You can inherit all the usual members for a non-parameterized test
      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * By first sentence, we mean the first sentence in the main description of a package, class or member.
         * This sentence is copied to the package, class or member summary, and to the alphabetic index.
         * <p>
         * From JDK 1.2 forward, the BreakIterator class is already used to determine the end of sentence for all languages but English.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/object.h

    /// manipulation should done using Handle instances. Users should not be working
    /// with TaggedValues directly.
    
    /// The `Handle` class contains a TaggedValue in the `value_` member, which
    /// contains the underlying data. An object belonging to `Foo`, a derived class
    /// of `Handle`, can be referred to as a `Foo` handle.
    ///
    /// It is important that all derived classes do not add any new data fields.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. src/runtime/map_fast32.go

    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_fast32 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ugorji/go/codec
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapaccess2_fast32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/os/types_windows.go

    	if d.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0 {
    		// Per https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-win32_find_dataw:
    		// “If the dwFileAttributes member includes the FILE_ATTRIBUTE_REPARSE_POINT
    		// attribute, this member specifies the reparse point tag. Otherwise, this
    		// value is undefined and should not be used.”
    		fs.ReparseTag = d.Reserved0
    	}
    	return fs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

    """Defines utilities involving SavedModel."""
    from typing import Collection, Dict, Mapping, Optional, Sequence
    
    from absl import logging
    
    # pylint: disable=g-importing-member
    from google.protobuf.any_pb2 import Any
    # pylint: enable=g-importing-member
    from tensorflow.core.framework import graph_pb2
    from tensorflow.core.protobuf import meta_graph_pb2
    from tensorflow.core.protobuf import saver_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. fastapi/params.py

            deprecated: Union[deprecated, str, bool, None] = None,
            include_in_schema: bool = True,
            json_schema_extra: Union[Dict[str, Any], None] = None,
            **extra: Any,
        ):
            self.embed = embed
            self.media_type = media_type
            if example is not _Unset:
                warnings.warn(
                    "`example` has been deprecated, please use `examples` instead",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    // Do not remove or change the type signature.
    // (See go.dev/issue/57336.)
    //
    // getAuxv should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cilium/ebpf
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname getAuxv
    func getAuxv() []uintptr { return auxv }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top