Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 655 for IsSame (0.12 sec)

  1. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

         */
        @Override
        public boolean isSameTree ( SmbTreeHandle th ) {
            if ( ! ( th instanceof SmbTreeHandleImpl ) ) {
                return false;
            }
            return this.treeConnection.isSame( ( (SmbTreeHandleImpl) th ).treeConnection);
        }
    
    
        @Override
        public int getSendBufferSize () throws SmbException {
            try ( SmbSessionImpl session = this.treeConnection.getSession();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/internal/diff/testdata/same.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 55 bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podos.go

    package v1
    
    import (
    	v1 "k8s.io/api/core/v1"
    )
    
    // PodOSApplyConfiguration represents an declarative configuration of the PodOS type for use
    // with apply.
    type PodOSApplyConfiguration struct {
    	Name *v1.OSName `json:"name,omitempty"`
    }
    
    // PodOSApplyConfiguration constructs an declarative configuration of the PodOS type for use with
    // apply.
    func PodOS() *PodOSApplyConfiguration {
    	return &PodOSApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 21:31:52 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        override
        fun asConfigurationId(model: CIBuildModel) =
            "${model.projectId}_${oldUuid ?: "PerformanceTest$uuid"}"
    
        override
        fun asName(): String =
            "${type.displayName} - ${os.asName()}${if (withoutDependencies) " without dependencies" else ""}"
    
        override
        fun channel() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

    class FlakyTestQuarantine(model: CIBuildModel, stage: Stage, os: Os, arch: Arch = Arch.AMD64) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_FlakyQuarantine_${os.asName()}_${arch.asName()}")
        name = "Flaky Test Quarantine - ${os.asName()} ${arch.asName()}"
        description = "Run all flaky tests skipped multiple times"
    
        applyDefaultSettings(os = os, arch = arch, buildJvm = BuildToolBuildJvm, timeout = 180)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. .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)
  8. src/cmd/compile/internal/types2/errorcalls_test.go

    			call, _ := n.(*syntax.CallExpr)
    			if call == nil {
    				return true
    			}
    			selx, _ := call.Fun.(*syntax.SelectorExpr)
    			if selx == nil {
    				return true
    			}
    			if !(isName(selx.X, "check") && isName(selx.Sel, "errorf")) {
    				return true
    			}
    			// check.errorf calls should have at least errorfMinArgCount arguments:
    			// position, code, format string, and arguments to format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        return "${model.projectId}_DocsTest_${os.asName()}"
    }
    
    class DocsTestProject(
        model: CIBuildModel,
        stage: Stage,
        val os: Os,
        testJava: JvmCategory,
        testTypes: List<DocsTestType>
    ) : Project({
        id(asDocsTestId(model, os))
        name = "Docs Test - ${testJava.version.name.toCapitalized()} ${os.asName()}"
    }) {
        val docsTests: List<BaseGradleBuildType>
    
        init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/injection/image-auto.go

    			return true
    		}
    	}
    	return false
    }
    
    func getNamespaceLabels(c analysis.Context, nsName string) map[string]string {
    	if nsName == "" {
    		nsName = "default"
    	}
    	ns := c.Find(gvk.Namespace, resource.NewFullName("", resource.LocalName(nsName)))
    	if ns == nil {
    		return nil
    	}
    	return ns.Metadata.Labels
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top