Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 280 for because3 (0.37 sec)

  1. src/runtime/traceback.go

    //
    //	var u unwinder
    //	for u.init(gp, 0); u.valid(); u.next() {
    //		// ... use frame info in u ...
    //	}
    //
    // Implementation note: This is carefully structured to be pointer-free because
    // tracebacks happen in places that disallow write barriers (e.g., signals).
    // Even if this is stack-allocated, its pointer-receiver methods don't know that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         * `FirImplicitInvokeCall`.
         *
         * Note that, if the calleeExpression is already a KtCallExpression, then we don't do this because such a callExpression can be properly
         * resolved to the desired FIR element. That is, cases like `getHighLevelFunction()()` just works, where the both `KtCallExpression`
         * resolve to the desired FIR element.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - Variant 'bar':
          - Incompatible because this component declares attribute 'buildType' with value 'release' and the consumer needed attribute 'buildType' with value 'debug'
          - Other compatible attribute:
              - Doesn't say anything about flavor (required 'free')
      - Variant 'foo' declares attribute 'flavor' with value 'free':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            property.get()
            then:
            def e = thrown(IllegalStateException)
            e.message == "Cannot query the value of ${displayName} because it has no value available."
        }
    
        def "property has no value when adding a value provider with no value"() {
            given:
            property.set(['k1': 'v1'])
            property.put('k2', 'v2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. plugin/pkg/admission/resourcequota/admission_test.go

    	if err == nil {
    		t.Errorf("Expected an error because the pod exceeded allowed quota")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains 'Providing metadata for group:projectB:2.2'
            outputContains 'Providing metadata for group:projectB:1.1'
    
            // Because the consumer has declared attributes, we now need to call the supplier for projectA too
            outputContains 'Providing metadata for group:projectA:1.2'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	// Reload any dependencies of the main modules which are not
    	// at their selected versions at workspace mode, because the
    	// requirements don't accurately reflect the transitive imports.
    	if pruning == workspace {
    		// hasDepsInAll contains the set of modules that need to be loaded
    		// at workspace pruning because any of their dependencies may
    		// provide packages in all.
    		hasDepsInAll := make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    		logger.V(6).Info("Worth requeuing because no failed plugins", "pod", klog.KObj(pInfo.Pod))
    		return queueAfterBackoff
    	}
    
    	if event.IsWildCard() {
    		// If the wildcard event is special one as someone wants to force all Pods to move to activeQ/backoffQ.
    		// We return queueAfterBackoff in this case, while resetting all blocked plugins.
    		logger.V(6).Info("Worth requeuing because the event is wildcard", "pod", klog.KObj(pInfo.Pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	"cmd/go/internal/work"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    )
    
    var CmdGet = &base.Command{
    	// Note: flags below are listed explicitly because they're the most common.
    	// Do not send CLs removing them because they're covered by [get flags].
    	UsageLine: "go get [-t] [-u] [-v] [build flags] [packages]",
    	Short:     "add dependencies to current module and install them",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	if !apiextensionshelpers.HasServedCRDVersion(crd, requestInfo.APIVersion) {
    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    
    	// There is a small chance that a CRD is being served because NamesAccepted condition is true,
    	// but it becomes "unserved" because another names update leads to a conflict
    	// and EstablishingController wasn't fast enough to put the CRD into the Established condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top