Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,885 for found$ (0.12 sec)

  1. internal/grid/manager.go

    		authRequest: o.AuthRequest,
    	}
    	m.handlers.init()
    	if ctx == nil {
    		ctx = context.Background()
    	}
    	for _, host := range o.Hosts {
    		if host == o.Local {
    			if found {
    				return nil, fmt.Errorf("grid: local host found multiple times")
    			}
    			found = true
    			// No connection to local.
    			continue
    		}
    		m.targets[host] = newConnection(connectionParams{
    			ctx:           ctx,
    			id:            m.ID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirScriptSymbol.kt

    /*
     * Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.symbols
    
    import com.intellij.psi.PsiElement
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    import org.jetbrains.kotlin.analysis.api.fir.annotations.KaFirAnnotationListForDeclaration
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

        /**
         * Tries to locate a module by name.
         *
         * @return the optional module, or {@literal null} if it cannot be found
         * @throws UnknownModuleException if the requested module is found but one of its dependencies is not
         */
        @Nullable
        Module findModule(String name) throws UnknownModuleException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/edit.go

    		base.Fatal(err)
    	}
    }
    
    // parsePathVersion parses -flag=arg expecting arg to be path@version.
    func parsePathVersion(flag, arg string) (path, version string) {
    	before, after, found := strings.Cut(arg, "@")
    	if !found {
    		base.Fatalf("go: -%s=%s: need path@version", flag, arg)
    	}
    	path, version = strings.TrimSpace(before), strings.TrimSpace(after)
    	if err := module.CheckImportPath(path); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    		defer func() {
    			cache.updatedAt = time.Now()
    			store.unlock()
    		}()
    
    		_, found := cache.iamUsersMap[accessKey]
    
    		// Check for regular user access key
    		if !found {
    			err = store.loadUser(ctx, accessKey, regUser, cache.iamUsersMap)
    			if _, found = cache.iamUsersMap[accessKey]; found {
    				// load mapped policies
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		nodeName := types.NodeName(pod.Spec.NodeName)
    		found := adc.desiredStateOfWorld.VolumeExists(v1.UniqueVolumeName(uniqueName), nodeName)
    		if !found {
    			t.Fatalf("Run failed with error. Volume %s, node %s not found in DesiredStateOfWorld",
    				pod.Spec.Volumes[0].Name,
    				pod.Spec.NodeName)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/elementDiagnostics/hiddenFromObjectiveC.txt

    No diagnostics found...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 14:30:08 UTC 2024
    - 21 bytes
    - Viewed (0)
  8. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactory.java

                String interfaceName;
                private boolean found;
    
                private AnnotationDetector() {
                    super(AsmConstants.ASM_LEVEL);
                }
    
                @Override
                public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
                    if (desc.equals(ANNOTATION_DESCRIPTOR)) {
                        found = true;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    // FindPluginByName fetches a plugin by name. If no plugin is found, returns error.
    func (pm *VolumePluginMgr) FindPluginByName(name string) (VolumePlugin, error) {
    	pm.mutex.RLock()
    	defer pm.mutex.RUnlock()
    
    	var match VolumePlugin
    	if v, found := pm.plugins[name]; found {
    		match = v
    	}
    
    	pm.refreshProbedPlugins()
    	if plugin, found := pm.probedPlugins[name]; found {
    		if match != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. cmd/tier-handlers.go

    		Message:    "Specified remote tier already exists",
    		StatusCode: http.StatusConflict,
    	}
    	// error returned when remote tier is not found
    	errTierNotFound = AdminError{
    		Code:       "XMinioAdminTierNotFound",
    		Message:    "Specified remote tier was not found",
    		StatusCode: http.StatusNotFound,
    	}
    	// error returned when remote tier name is not in uppercase
    	errTierNameNotUppercase = AdminError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top