Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 210 for Fsname (0.12 sec)

  1. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
        name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
        description = "Allows you to rerun a selected flaky test 10 times"
        id(id)
        val testJvmVendorParameter = "testJavaVendor"
        val testJvmVersionParameter = "testJavaVersion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/errorcalls_test.go

    						}
    					}
    					return false
    				}
    				return true
    			})
    			return false
    		})
    	}
    }
    
    func isName(n syntax.Node, name string) bool {
    	if n, ok := n.(*syntax.Name); ok {
    		return n.Value == name
    	}
    	return false
    }
    
    func balancedParentheses(s string) bool {
    	var stack []byte
    	for _, ch := range s {
    		var open byte
    		switch ch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/injection/image-auto.go

    			c.Report(gvk.Deployment, m)
    		}
    		return true
    	})
    }
    
    func hasAutoImage(spec *v1.PodSpec) bool {
    	for _, c := range spec.Containers {
    		if c.Name == istioProxyContainerName && c.Image == manualInjectionImage {
    			return true
    		}
    	}
    	return false
    }
    
    func getNamespaceLabels(c analysis.Context, nsName string) map[string]string {
    	if nsName == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        override
        fun asName(): String =
            "${type.displayName} - ${os.asName()}${if (withoutDependencies) " without dependencies" else ""}"
    
        override
        fun channel() =
            "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%"
    }
    
    data class FlameGraphGeneration(
        private val uuid: Int,
        private val name: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    abstract class AdHocPerformanceScenario(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}"
        name = "AdHoc Performance Scenario - ${os.asName()} ${arch.asName()}"
        id(id)
    
        applyPerformanceTestSettings(os = os, arch = arch, timeout = 420)
        artifactRules = individualPerformanceTestArtifactRules
    
        params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        testClasses: List<String>,
    ) : BaseGradleBuildType(stage = stage, init = {
    
        id("${model.projectId}_${docsTestType.docsTestName}_${os.asName()}_$index")
        name = "${docsTestType.docsTestDesc} - ${testJava.version.name.toCapitalized()} ${os.asName()} ($index)"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyTestDefaults(
            model,
            this,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/go/types/errorcalls_test.go

    						}
    					}
    					return false
    				}
    				return true
    			})
    			return false
    		})
    	}
    }
    
    func isName(n ast.Node, name string) bool {
    	if n, ok := n.(*ast.Ident); ok {
    		return n.Name == name
    	}
    	return false
    }
    
    func balancedParentheses(s string) bool {
    	var stack []byte
    	for _, ch := range s {
    		var open byte
    		switch ch {
    		case '(', '[', '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction.go

    	}
    	ref := &v1.ObjectReference{
    		APIVersion: "v1",
    		Kind:       "Pod",
    		Name:       nsName.Name,
    		Namespace:  nsName.Namespace,
    	}
    	tc.recorder.Eventf(ref, v1.EventTypeNormal, "TaintManagerEviction", "Marking for deletion Pod %s", nsName.String())
    }
    
    func (tc *Controller) emitCancelPodDeletionEvent(nsName types.NamespacedName) {
    	if tc.recorder == nil {
    		return
    	}
    	ref := &v1.ObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. plugin/pkg/admission/podtolerationrestriction/admission.go

    }
    
    func (p *Plugin) getNamespaceDefaultTolerations(nsName string) ([]api.Toleration, error) {
    	ns, err := p.getNamespace(nsName)
    	if err != nil {
    		return nil, err
    	}
    	return extractNSTolerations(ns, NSDefaultTolerations)
    }
    
    func (p *Plugin) getNamespaceTolerationsWhitelist(nsName string) ([]api.Toleration, error) {
    	ns, err := p.getNamespace(nsName)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/matchers/UserAgentMatcher.java

            String javaVendorVersion = System.getProperty("java.vm.version");
            String osName = System.getProperty("os.name");
            String osVersion = System.getProperty("os.version");
            String osArch = System.getProperty("os.arch");
            return String.format("%s/%s (%s;%s;%s) (%s;%s;%s)", applicationName, version, osName, osVersion, osArch, javaVendor, javaVersion, javaVendorVersion);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top