Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for integ (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                include ':a'
                include ':a:tests'
                include ':a:tests:integ-tests'
            """
            file("a/build.gradle") << ""
            file("a/tests/build.gradle") << ""
            file("a/tests/integ-tests/build.gradle") << ""
    
            when:
            isolatedProjectsRun 'build'
    
            then:
            fixture.assertStateStored {
                projectsConfigured(":", ":a", ":a:tests", ":a:tests:integ-tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

        testImplementation libs.commonsHttpclient
        testImplementation libs.httpmime
    
        docsTestImplementation platform(project(":distributions-dependencies"))
        docsTestImplementation project(":internal-integ-testing")
        docsTestImplementation project(":base-services")
        docsTestImplementation project(":logging")
        docsTestImplementation libs.junit5Vintage
        docsTestImplementation libs.junit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    	extendedResources1 := map[string]int64{
    		"intel.com/foo": 4,
    		"intel.com/bar": 8,
    	}
    	extendedResources2 := map[string]int64{
    		"intel.com/foo": 8,
    		"intel.com/bar": 4,
    	}
    
    	extendedResourcePod1 := map[v1.ResourceName]string{
    		"intel.com/foo": "2",
    		"intel.com/bar": "2",
    	}
    	extendedResourcePod2 := map[v1.ResourceName]string{
    		"intel.com/foo": "4",
    		"intel.com/bar": "2",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. src/runtime/iface.go

    //
    //go:linkname getitab
    func getitab(inter *interfacetype, typ *_type, canfail bool) *itab {
    	if len(inter.Methods) == 0 {
    		throw("internal error - misuse of itab")
    	}
    
    	// easy case
    	if typ.TFlag&abi.TFlagUncommon == 0 {
    		if canfail {
    			return nil
    		}
    		name := toRType(&inter.Type).nameOff(inter.Methods[0].Name)
    		panic(&TypeAssertionError{nil, typ, &inter.Type, name.Name()})
    	}
    
    	var m *itab
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. pkg/controller/job/indexed_job_utils.go

    				continue
    			}
    			if inter.Last >= completions {
    				inter.Last = completions - 1
    			}
    		} else {
    			inter.Last = inter.First
    		}
    		if lastInterval != nil && lastInterval.Last == inter.First-1 {
    			lastInterval.Last = inter.Last
    		} else {
    			result = append(result, inter)
    			lastInterval = &result[len(result)-1]
    		}
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_amd64.s

    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    
    // The avx2-version is described in an Intel White-Paper:
    // "Fast SHA-256 Implementations on Intel Architecture Processors"
    // To find it, surf to http://www.intel.com/p/en_US/embedded
    // and search for that title.
    // AVX2 version by Intel, same algorithm as code in Linux kernel:
    // https://github.com/torvalds/linux/blob/master/arch/x86/crypto/sha256-avx2-asm.S
    // by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/helper.go

    		Time: metav1.NewTime(cstat.Timestamp),
    	}
    
    	for i := range cstat.Network.Interfaces {
    		inter := cstat.Network.Interfaces[i]
    		iStat := statsapi.InterfaceStats{
    			Name:     inter.Name,
    			RxBytes:  &inter.RxBytes,
    			RxErrors: &inter.RxErrors,
    			TxBytes:  &inter.TxBytes,
    			TxErrors: &inter.TxErrors,
    		}
    
    		if inter.Name == defaultNetworkInterfaceName {
    			iStats.InterfaceStats = iStat
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. src/runtime/error.go

    func (e *TypeAssertionError) Error() string {
    	inter := "interface"
    	if e._interface != nil {
    		inter = toRType(e._interface).string()
    	}
    	as := toRType(e.asserted).string()
    	if e.concrete == nil {
    		return "interface conversion: " + inter + " is nil, not " + as
    	}
    	cs := toRType(e.concrete).string()
    	if e.missingMethod == "" {
    		msg := "interface conversion: " + inter + " is " + cs + ", not " + as
    		if cs == as {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors_interprocedural.mlir

        func.return %c0 : tensor<f32>
      }
    }
    
    // -----
    
    // CHECK-LABEL: module attributes {tf_saved_model.semantics}
    module attributes {tf_saved_model.semantics} {
    
      // Test case: The inter-procedural analysis with different types of
      // TF call ops
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    // on input bytes, consuming additional fields, and then interpreting
    // consumed data as instruction arguments. The names of the xRead and xArg
    // operations are taken from the Intel manual conventions, for example
    // Volume 2, Section 3.1.1, page 487 of
    // http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-manual-325462.pdf
    //
    // The actual decoding program is generated by ../x86map.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top