Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for Xacc (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/AnalysisStepRunner.kt

            val resultHandlers = stepContext.supportedResolutionResultHandlers.filter { processor -> postProcessingFeatures.any(processor::shouldHandleFeature) }
            val resolution = resultHandlers.fold(initialResolution) { acc, it -> it.processResolutionResult(acc) }
    
            val document = languageModel.toDocument()
            val documentResolutionContainer = resolutionContainer(evaluationSchema.analysisSchema, resolver.trace, document)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/go/constant/value.go

    	switch x := x.(type) {
    	case int64Val:
    		f := float32(x)
    		return f, int64Val(f) == x
    	case intVal:
    		f, acc := newFloat().SetInt(x.val).Float32()
    		return f, acc == big.Exact
    	case ratVal:
    		return x.val.Float32()
    	case floatVal:
    		f, acc := x.val.Float32()
    		return f, acc == big.Exact
    	case unknownVal:
    		return 0, false
    	default:
    		panic(fmt.Sprintf("%v not a Float", x))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/printers/name.go

    	if obj.GetObjectKind().GroupVersionKind().Empty() {
    		return fmt.Errorf("missing apiVersion or kind; try GetObjectKind().SetGroupVersionKind() if you know the type")
    	}
    
    	name := "<unknown>"
    	if acc, err := meta.Accessor(obj); err == nil {
    		if n := acc.GetName(); len(n) > 0 {
    			name = n
    		}
    	}
    
    	return printObj(w, name, p.Operation, p.ShortOutput, GetObjectGroupKind(obj))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 28 23:24:54 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users_test.go

    		SecretKey:  svcSK,
    	})
    	if err != nil {
    		c.Fatalf("Unable to create svc acc: %v", err)
    	}
    	svcClient := s.getUserClient(c, cr.AccessKey, cr.SecretKey, "")
    	c.mustListObjects(ctx, svcClient, bucket)
    
    	err = madmClient.DeleteServiceAccount(ctx, svcAK)
    	if err != nil {
    		c.Fatalf("unable to delete svc acc: %v", err)
    	}
    	c.mustNotListObjects(ctx, svcClient, bucket)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. src/crypto/ecdh/nist.go

    	return &PublicKey{
    		curve:     key.curve,
    		publicKey: publicKey,
    	}
    }
    
    // isZero returns whether a is all zeroes in constant time.
    func isZero(a []byte) bool {
    	var acc byte
    	for _, b := range a {
    		acc |= b
    	}
    	return acc == 0
    }
    
    // isLess returns whether a < b, where a and b are big-endian buffers of the
    // same length and shorter than 72 bytes.
    func isLess(a, b []byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    			// Update fails
    			update, ok := action.(clienttesting.UpdateAction)
    
    			if !ok {
    				t.Fatalf("Reactor got non-update action: %+v", action)
    			}
    			acc, _ := meta.Accessor(update.GetObject())
    			return true, nil, apierrors.NewForbidden(update.GetResource().GroupResource(), acc.GetName(), errors.New("Mock error"))
    		}
    		// Update succeeds
    		return false, nil, nil
    	}
    }
    
    func deleted(pv *v1.PersistentVolume) *v1.PersistentVolume {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

                def rootCause = new Exception("lastLine")
                n == 0
                    ? rootCause :
                    (1..n).inject(new Exception("lastLine")) { acc, it -> new Exception("line${n - it}", acc) }
            }
    
            def jdkPath = testLocation("path")
            defineJdks(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/syscall/security_windows.go

    // System specify target computer to search.
    func LookupSID(system, account string) (sid *SID, domain string, accType uint32, err error) {
    	if len(account) == 0 {
    		return nil, "", 0, EINVAL
    	}
    	acc, e := UTF16PtrFromString(account)
    	if e != nil {
    		return nil, "", 0, e
    	}
    	var sys *uint16
    	if len(system) > 0 {
    		sys, e = UTF16PtrFromString(system)
    		if e != nil {
    			return nil, "", 0, e
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    		// parsing yields a significant performance increase.
    		off := 0
    		acc := uint32(0)
    		for ; off < len(s); off++ {
    			c := s[off]
    			if c >= '0' && c <= '9' {
    				acc = (acc << 4) + uint32(c-'0')
    			} else if c >= 'a' && c <= 'f' {
    				acc = (acc << 4) + uint32(c-'a'+10)
    			} else if c >= 'A' && c <= 'F' {
    				acc = (acc << 4) + uint32(c-'A'+10)
    			} else {
    				break
    			}
    			if off > 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

            val prettyRenderer = buildList {
                addIfNotNull(defaultRendererOption)
                addAll(directives[PRETTY_RENDERER_OPTION])
            }.fold(defaultRenderer) { acc, prettyRenderingMode ->
                prettyRenderingMode.transformation(acc)
            }
    
            fun KaSession.safePointer(ktSymbol: KaSymbol): PointerWrapper? {
                val regularPointer = ktSymbol.runCatching {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top