Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 324 for getZ (0.07 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    		ordinal = int(i)
    	}
    	return parent, ordinal
    }
    
    // getParentName gets the name of pod's parent StatefulSet. If pod has not parent, the empty string is returned.
    func getParentName(pod *v1.Pod) string {
    	parent, _ := getParentNameAndOrdinal(pod)
    	return parent
    }
    
    // getOrdinal gets pod's ordinal. If pod has no ordinal, -1 is returned.
    func getOrdinal(pod *v1.Pod) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @return This request, never {@code null}.
         */
        MavenExecutionRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/common_test.go

    		},
    		{
    			name: "InitConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: InitConfiguration
    			`, gv)),
    			expectedKinds: []string{
    				constants.InitConfigurationKind,
    				constants.ClusterConfigurationKind,
    			},
    			expectErr: false,
    		},
    		{
    			name: "ClusterConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
            get() = short
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh.go

    	}
    	return &out, nil
    }
    
    // ReadMeshNetworks gets mesh networks configuration from a config file
    func ReadMeshNetworks(filename string) (*meshconfig.MeshNetworks, error) {
    	yaml, err := os.ReadFile(filename)
    	if err != nil {
    		return nil, multierror.Prefix(err, "cannot read networks config file")
    	}
    	return ParseMeshNetworks(string(yaml))
    }
    
    // ReadMeshConfig gets mesh configuration from a config file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            Language.GROOVY | JavaLanguageVersion.of(11) | true
            Language.CPP    | null                       | false
            Language.SWIFT  | null                       | false
        }
    
        def "gets java-version from property"() {
            given:
            def userQuestions = Mock(UserQuestions)
            def buildInitializer = Mock(BuildInitializer)
            buildInitializer.supportsJavaTargets() >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

                                      op)))
            return failure();
    
          OpBuilder builder(op);
          auto const_op = builder.create<TF::ConstOp>(
              op->getLoc(), DenseIntElementsAttr::get(
                                RankedTensorType::get({}, builder.getI64Type()),
                                {device_ordinal}));
          op->replaceAllUsesWith(const_op);
          op->erase();
          return WalkResult::advance();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            result.assertTaskSkipped ":compileJava"
        }
    
        def "clean doesn't get cached"() {
            withBuildCache().run "assemble"
            withBuildCache().run "clean"
            withBuildCache().run "assemble"
            when:
            withBuildCache().run "clean"
            then:
            executedAndNotSkipped ":clean"
        }
    
        def "task gets loaded from cache when it is executed from a different directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/noderesources.go

    	// for this plugin.
    	cancel func(reason error)
    
    	// resources is protected by the nodeResourcesController read/write lock.
    	// When receiving updates from the driver, the entire slice gets replaced,
    	// so it is okay to not do a deep copy of it. Only retrieving the slice
    	// must be protected by a read lock.
    	resources []*resourceapi.ResourceModel
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    //go:linkname add
    //go:nosplit
    func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
    	return unsafe.Pointer(uintptr(p) + x)
    }
    
    // getg returns the pointer to the current g.
    // The compiler rewrites calls to this function into instructions
    // that fetch the g directly (from TLS or from the dedicated register).
    func getg() *g
    
    // mcall switches from the g to the g0 stack and invokes fn(g),
    // where g is the goroutine that made the call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top