Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 229 for somefile (0.27 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns.go

    	canMigrateCorefile := true
    
    	if corefile == "" || migration.Default("", corefile) {
    		// If the Corefile is empty or default, the latest default Corefile will be applied
    		if err := apiclient.CreateOrUpdateConfigMap(client, coreDNSConfigMap); err != nil {
    			return err
    		}
    	} else if corefileMigrationRequired {
    		// If migration is required, try and migrate the Corefile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    		t.Errorf("SameFile(%v, %v) = true; want false", f1, f2)
    	}
    
    	// Check that os.SameFile works with a mix of os.ReadDir and os.Stat files.
    	f1s, err := os.Stat(pathA)
    	if err != nil {
    		t.Fatal(err)
    	}
    	f2s, err := os.Stat(pathB)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !os.SameFile(f1, f1s) {
    		t.Errorf("SameFile(%v, %v) = false; want true", f1, f1s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect_twice.kt

    package prop.`in`.`companion`.indirect.twice
    
    class Test {
        fun test() {
            val x = <expr>oneMore</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
            val oneMore = indirectPointer
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 296 bytes
    - Viewed (0)
  4. pkg/apis/core/validation/events_test.go

    					Kind:       "Node",
    				},
    				EventTime:           someTime,
    				ReportingController: "k8s.io/my-controller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Because",
    				Type:                "Normal",
    				Series: &core.EventSeries{
    					Count:            0,
    					LastObservedTime: someTime,
    				},
    			},
    			valid: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  5. hack/testdata/CRD/multi-crd-list.yaml

    kind: List
    items:
    - kind: Foo
      apiVersion: company.com/v1
      metadata:
        name: test-list
        labels:
          pruneGroup: "true"
      someField: field1
      otherField: field2
    - kind: Bar
      apiVersion: company.com/v1
      metadata:
        name: test-list
        labels:
          pruneGroup: "true"
      someField: field1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 335 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            when: "adding a library to the model"
            tomlFile << """
    bar = {group="org.gradle.test", name="bar", version="1.0"}
    """
            run 'verifyExtension'
            then: "extension is regenerated"
            operations.hasOperation("Executing generation of dependency accessors for libs")
    
            when: "updating a version in the model"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/scopeids/PersistentScopeIdLoaderTest.groovy

            when:
            def id = loader.user.id
    
            then:
            1 * globalScopedCacheBuilderFactory.baseDirForCrossVersionCache("user-id.txt") >> storeFile
    
            and:
            1 * storeFactory.create(storeFile, _) >> store
    
            and:
            1 * store.maybeUpdate(_) >> { ObjectHolder.UpdateAction action ->
                action.update(null)
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. cluster/addons/dns/coredns/coredns.yaml.base

              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java

            super(createMessage(message, projectId, pomFile));
            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
        /**
         * @param projectId
         * @param message
         * @param pomFile   pom file location
         * @param cause
         */
        protected ProjectBuildingException(String projectId, String message, File pomFile, Throwable cause) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/custom-template.iop.yaml

                {{- range $index, $container := .Spec.Containers }}
                - name: {{ $container.Name }}
                  env:
                  - name: SOME_ENV
                    value: "true"
                  - name: SOME_FILE
                    value: /var/lib/data/foo.json
                  volumeMounts:
                  - mountPath: /var/lib/data/foo.json
                    subPath: foo.json
                    name: some-injected-file
                {{- end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 23:34:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top