Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 934 for Handles (0.62 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

        }
      }
      if_op.replaceAllUsesWith(new_if);
      if_op.erase();
      return success();
    }
    
    // Handles stack usage by a tf.StatefulPartitionedCall or a tf.PartitionedCall.
    // It will first check if the callee was previously handled, and try to reuse
    // that result if so. Otherwise, it will clone and convert the callee function,
    // and performs stack ops decomposition on it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                "Flow actions must belong to a Flow scope!"
            }
            return owner
        }
    }
    
    
    /**
     * Handles Provider instances seen in the object graph, and delegates to another codec that handles the value.
     */
    class ProviderCodec(
        private val providerCodec: FixedValueReplacingProviderCodec
    ) : Codec<ProviderInternal<*>> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            e.message == "Option 'stringValue' on method cannot take multiple parameters in class 'org.gradle.api.internal.tasks.options.OptionReaderTest\$TestClass4#setStrings'."
        }
    
        def "handles field options"() {
            when:
            List<InstanceOptionDescriptor> options = TaskOptionsGenerator.generate(new TestClassWithFields(), reader).getAll()
            then:
            options[0].name == "customOptionName"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    			err = errors.NewBadRequest(err.Error())
    			scope.err(err, w, req)
    			return
    		}
    		if admit != nil && admit.Handles(admission.Connect) {
    			userInfo, _ := request.UserFrom(ctx)
    			// TODO: remove the mutating admission here as soon as we have ported all plugin that handle CONNECT
    			if mutatingAdmission, ok := admit.(admission.MutationInterface); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_base.go

    func (ctrl *PersistentVolumeController) storeClaimUpdate(logger klog.Logger, claim interface{}) (bool, error) {
    	return storeObjectUpdate(logger, ctrl.claims, claim, "claim")
    }
    
    // updateVolume runs in worker thread and handles "volume added",
    // "volume updated" and "periodic sync" events.
    func (ctrl *PersistentVolumeController) updateVolume(ctx context.Context, volume *v1.PersistentVolume) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            when:
            outputs.snapshot()
            source "class A { /* change */ }"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses('A', 'B')
        }
    
        def "handles multiple compile tasks within a single project"() {
            source "class A {}", "class B extends A {}"
            file("src/integTest/${languageName}/X.${languageName}") << "class X {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. pkg/volume/util/subpath/subpath_windows.go

    }
    
    // unlockPath unlock directories
    func unlockPath(fileHandles []uintptr) {
    	if fileHandles != nil {
    		for _, handle := range fileHandles {
    			syscall.CloseHandle(syscall.Handle(handle))
    		}
    	}
    }
    
    // lockPath locks a directory or symlink, return handle, exec "syscall.CloseHandle(handle)" to unlock the path
    func lockPath(path string) (uintptr, error) {
    	if len(path) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. pkg/kube/krt/README.md

      * `krt` can accept any object type, from any source, and handle them the same.
    * Provide high level abstractions.
      * Controller authors can write simple transformation functions from `Input` -> `Output` (with dependencies); the framework handles all the state automatically.
    
    ## Key Primitives
    
    The most important primitive provided is the `Collection` interface.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/sync/sync.go

    }
    
    // syncOp is the interface for generic sync operation.
    type syncOp interface {
    	// run the requested sync operation.
    	run(logger klog.Logger, sync *NodeSync) error
    }
    
    // updateOp handles creation and updates of a node.
    type updateOp struct {
    	node *v1.Node
    }
    
    func (op *updateOp) String() string {
    	if op.node == nil {
    		return fmt.Sprintf("updateOp(nil)")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

                configurations { conf }
            """
    
            when:
            run(":a:resolveConf", "-i")
    
            then:
            fixture.assertProjectsConfigured(":", ":a", ":b")
        }
    
        def "handles buildNeeded"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            file("a/build.gradle") << """ apply plugin: 'java' """
            file("b/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top