Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for palmer (0.11 sec)

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

        if (!symbol_uses.has_value()) {
          return failure();
        }
        for (auto use : *symbol_uses) {
          Operation* caller = use.getUser();
          bool changed = false;
          rewriter.startOpModification(caller);
          for (auto [result, type] :
               llvm::zip(caller->getResults(), return_types)) {
            if (result.getType() != type) {
              result.setType(type);
              changed = true;
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. pkg/security/security.go

    	}
    	return nil
    }
    
    // Caller carries the identity and authentication source of a caller.
    type Caller struct {
    	AuthSource AuthSource
    	Identities []string
    
    	KubernetesInfo KubernetesInfo
    }
    
    // KubernetesInfo defines Kubernetes specific information extracted from the caller.
    // This involves additional metadata about the caller beyond just its SPIFFE identity.
    type KubernetesInfo struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. internal/grid/handlers.go

    // Handlers can use this to create a reusable response.
    // The response may be reused, so caller should clear any fields.
    func (h *SingleHandler[Req, Resp]) NewResponse() Resp {
    	return h.newResp()
    }
    
    // NewRequest creates a new request.
    // Handlers can use this to create a reusable request.
    // The request may be reused, so caller should clear any fields.
    func (h *SingleHandler[Req, Resp]) NewRequest() Req {
    	return h.newReq()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

        }
    
        @Override
        public void configureCommandLineParser(CommandLineParser parser) {
            buildEnvironmentConfigurationConverter.configure(parser);
        }
    
        @Override
        public Action<? super ExecutionListener> createAction(CommandLineParser parser, ParsedCommandLine commandLine) {
            Parameters parameters = buildEnvironmentConfigurationConverter.convertParameters(commandLine, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        }
    
        if (!pass_status.ok()) {
          // If pass failed and it is:
          //   FallbackEnabled - only collect metrics, do not propagate
          //     error to the caller.
          //   Enabled - return error back to the caller.
          if (pass_state == MlirOptimizationPassState::FallbackEnabled) {
            LOG(WARNING) << StringRefToView(name)
                         << " pass failed, continuing without the pass because the "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            CommandLineParser parser = new CommandLineParser();
            FileCollectionFactory fileCollectionFactory = TestFiles.fileCollectionFactory();
            BuildEnvironmentConfigurationConverter buildEnvironmentConfigurationConverter = new BuildEnvironmentConfigurationConverter(new BuildLayoutFactory(), fileCollectionFactory);
            buildEnvironmentConfigurationConverter.configure(parser);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. internal/grid/connection.go

    	if err != nil {
    		return nil, err
    	}
    	cl.subroute = &c.subID
    	return cl, nil
    }
    
    // Request allows to do a single remote request.
    // 'req' will not be used after the call and caller can reuse.
    // If no deadline is set on ctx, a 1-minute deadline will be added.
    func (c *Connection) Request(ctx context.Context, h HandlerID, req []byte) ([]byte, error) {
    	if !h.valid() {
    		return nil, ErrUnknownHandler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    // Make sure to bump the internode version at storage-rest-common.go
    type RawFileInfo struct {
    	// Content of entire xl.meta (may contain data depending on what was requested by the caller.
    	Buf []byte `msg:"b,allownil"`
    }
    
    // FileInfo - represents file stat information.
    // The above means that any added/deleted fields are incompatible.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    	// (not supplied by the caller). These should be closed as soon as they
    	// are inherited by the child process.
    	childIOFiles []io.Closer
    
    	// parentIOPipes holds closers for the parent's end of any pipes
    	// connected to the child's stdin, stdout, and/or stderr streams
    	// that were opened by the Cmd itself (not supplied by the caller).
    	// These should be closed after Wait sees the command and copying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                    // avoid leaks.
                    IoActions.closeQuietly(transformLoader);
                    // Throw the exception so the caller doesn't see the obviously closed loader.
                    ensureOpened();
                }
            }
            return transformLoader;
        }
    
        private Loader createLoaderForDomain(ProtectionDomain domain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top