Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 296 for emberi (0.17 sec)

  1. pkg/controller/endpoint/endpoints_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the shared informer passed to
    	// NewEndpointController.
    	podLister corelisters.PodLister
    	// podsSynced returns true if the pod shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/runtime/map.go

    // at compile time and the map needs to be allocated on the heap.
    //
    // makemap_small should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makemap_small
    func makemap_small() *hmap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/configmap.go

    		ic.mu.Unlock()
    	}
    
    	return myic, nil
    }
    
    func (ic *injectConfig) UpdateInjectionConfig(t resource.Context, update func(*inject.Config) error, cleanupStrategy cleanup.Strategy) error {
    	// Invalidate the member variable. The next time it's requested, it will get a fresh value.
    	ic.mu.Lock()
    	ic.injectConfig = nil
    	ic.mu.Unlock()
    
    	errG := multierror.Group{}
    	origCfg := map[string]string{}
    	mu := sync.RWMutex{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirStarImportingScope.kt

                if (import.relativeClassName == null) { // top level callable
                    DeclarationsInPackageProvider.getTopLevelCallableNamesInPackageProvider(import.packageFqName, analysisSession)
                } else { //member
                    val classId = import.resolvedClassId ?: error("Class id should not be null as relativeClassName is not null")
                    firScope.getStaticsScope(classId)?.getCallableNames().orEmpty()
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_generic.go

    	return runtime_cmpstring(a, b)
    }
    
    // runtime.cmpstring calls are emitted by the compiler.
    //
    // runtime.cmpstring should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/zhaochuninhefei/gmgo
    //   - github.com/bytedance/gopkg
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pkg/art/art.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package art
    
    import (
    	_ "embed"
    
    	"github.com/fatih/color"
    )
    
    //go:embed istio-ascii.txt
    var istioASCIIArt string
    
    func IstioArt() string {
    	return istioASCIIArt
    }
    
    func IstioColoredArt() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 16:30:44 UTC 2024
    - 859 bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/fakes_test.go

    // limitations under the License.
    
    package nodeagent
    
    import (
    	"context"
    	"embed"
    	"io/fs"
    	"sync/atomic"
    	"syscall"
    
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/cni/pkg/iptables"
    )
    
    //go:embed testdata/cgroupns
    var fakeProc embed.FS
    
    type fakeZtunnel struct {
    	deletedPods atomic.Int32
    	addedPods   atomic.Int32
    	addError    error
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/crypto/x509/root.go

    package x509
    
    import (
    	"internal/godebug"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // systemRoots should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/breml/rootcerts
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname systemRoots
    var (
    	once           sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheControlTest.kt

        assertThat(cacheControl.minFreshSeconds).isEqualTo(3)
        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 Apr 15 13:41:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/psiTypeProvider/AnalysisApiPsiTypeProviderTestUtils.kt

            val visitor = object : PsiElementVisitor() {
                override fun visitElement(element: PsiElement) {
                    if (element !is KtLightElement<*, *>) return
                    // NB: intentionally visit members first so that `self` can be found first if matched
                    if (element is PsiClass) {
                        element.fields.forEach { it.accept(this) }
                        element.methods.forEach { it.accept(this) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top