Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 123 for integ (0.19 sec)

  1. tests/integration/security/sds_ingress/ingress_test.go

    //go:build integ
    // +build integ
    
    //  Copyright Istio Authors
    //
    //  Licensed under the Apache License, Version 2.0 (the "License");
    //  you may not use this file except in compliance with the License.
    //  You may obtain a copy of the License at
    //
    //      http://www.apache.org/licenses/LICENSE-2.0
    //
    //  Unless required by applicable law or agreed to in writing, software
    //  distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    -Djava.io.tmpdir=C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\tmp -Dfile.encoding=windows-1252 -Dorg.gradle.classloaderscope.strict=true -ea -ea "-Dorg.gradle.appname=gradle" -classpath "C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\integ test\\bin\\..\\lib\\gradle-launcher-4.5.jar" org.gradle.launcher.GradleMain --init-script "C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\tmp\\teŝt files\\OsgiPluginIntegrationSpec\\can_merge_manifests...archives_\\uz4kt\\reproducible-archives-init.gradle"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x86asm
    
    import (
    	"fmt"
    	"strings"
    )
    
    // IntelSyntax returns the Intel assembler syntax for the instruction, as defined by Intel's XED tool.
    func IntelSyntax(inst Inst, pc uint64, symname SymLookup) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top