Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for doubt (0.04 sec)

  1. src/net/tcpsock_posix.go

    	// originating local address, sometimes it picks one that is already in use.
    	// So if the error is EADDRNOTAVAIL, we have to try again too, just for
    	// a different reason.
    	//
    	// The kernel socket code is no doubt enjoying watching us squirm.
    	for i := 0; i < 2 && (laddr == nil || laddr.Port == 0) && (selfConnect(fd, err) || spuriousENOTAVAIL(err)); i++ {
    		if err == nil {
    			fd.Close()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

        // TODO: Use structural type comparison? We can potentially ignore components which don't factor into overload resolution, such as type
        //       annotations, because we only need to pick one FIR callable without a reasonable doubt and ambiguities cannot originate from
        //       libraries.
        override fun isMatchingCallableDeclaration(psi: KtCallableDeclaration, fir: FirCallableDeclaration): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/apis/apidiscovery/types.go

    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    	// The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    	SingularResource string
    	// verbs is a list of supported API operation types (this includes
    	// but is not limited to get, list, watch, create, update, patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    	// The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    	// The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			ok = false
    		}
    	}
    	return ok
    }
    
    func isTestingType(typ types.Type, testingType string) bool {
    	// No Unalias here: I doubt "go test" recognizes
    	// "type A = *testing.T; func Test(A) {}" as a test.
    	ptr, ok := typ.(*types.Pointer)
    	if !ok {
    		return false
    	}
    	return analysisutil.IsNamedType(ptr.Elem(), "testing", testingType)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/kubeinject.go

    workloads. Unsupported resources are left unmodified so it is safe to
    run kube-inject over a single file that contains multiple Service,
    ConfigMap, Deployment, etc. definitions for a complex application. When in
    doubt re-run istioctl kube-inject on deployments to get the most up-to-date changes.
    
    It's best to do kube-inject when the resource is initially created.
    `,
    		Example: `  # Update resources on the fly before applying.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top