Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for setHandle (0.31 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WbDependentModule.java

            return deployPath;
        }
    
        public void setDeployPath(String deployPath) {
            this.deployPath = deployPath;
        }
    
        public String getHandle() {
            return handle;
        }
    
        public void setHandle(String handle) {
            this.handle = handle;
        }
    
        @Override
        public void appendNode(Node parentNode) {
            Map<String, Object> attributes = new LinkedHashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    	case *hx != nil:
    		// Only type parameter x has an inferred type. Use handle of x.
    		u.setHandle(y, hx)
    	// This case is treated like the default case.
    	// case *hy != nil:
    	// 	// Only type parameter y has an inferred type. Use handle of y.
    	//	u.setHandle(x, hy)
    	default:
    		// Neither type parameter has an inferred type. Use handle of y.
    		u.setHandle(x, hy)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    	case *hx != nil:
    		// Only type parameter x has an inferred type. Use handle of x.
    		u.setHandle(y, hx)
    	// This case is treated like the default case.
    	// case *hy != nil:
    	// 	// Only type parameter y has an inferred type. Use handle of y.
    	//	u.setHandle(x, hy)
    	default:
    		// Neither type parameter has an inferred type. Use handle of y.
    		u.setHandle(x, hy)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

                final HandlerList handlers = new HandlerList();
                handlers.setHandlers(new Handler[] { request_handler, new DefaultHandler() });
                server.setHandler(handlers);
            }
    
            public void start() {
                try {
                    server.start();
                } catch (final Exception e) {
                    throw new CrawlerSystemException(e);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pkg/kube/inject/watcher.go

    )
    
    // Watcher watches for and reacts to injection config updates.
    type Watcher interface {
    	// SetHandler sets the handler that is run when the config changes.
    	// Must call this before Run.
    	SetHandler(func(*Config, string) error)
    
    	// Run starts the Watcher. Must call this after SetHandler.
    	Run(<-chan struct{})
    
    	// Get returns the sidecar and values configuration.
    	Get() (*Config, string, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

      stack.getHandle().replaceAllUsesWith(local_var);
      (*data_var_to_size_var)[local_var] = local_size_var;
      stack.erase();
      return success();
    }
    
    LogicalResult HandleStackPushV2Op(
        TF::StackPushV2Op push,
        llvm::SmallDenseMap<Value, Value>* data_var_to_size_var) {
      auto it = data_var_to_size_var->find(push.getHandle());
      if (it == data_var_to_size_var->end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/PipeTest.java

        }
    
    
        @Test
        public void testSRVS () throws DcerpcException, IOException {
            try ( DcerpcHandle handle = DcerpcHandle
                    .getHandle("ncacn_np:" + getTestServer() + "[\\PIPE\\srvsvc]", withTestNTLMCredentials(getContext())) ) {
                MsrpcShareEnum rpc = new MsrpcShareEnum(handle.getServerWithDfs());
                handle.sendrecv(rpc);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

        llvm::SmallVector<int64_t, 8> dims(shape.begin(), shape.end());
        return dims;
      }
    
      bool has_failure = false;
      auto elem_type = cutil::GetElementTypeFromAccess(
          ta.getHandle(), module, [&](Operation* user) -> std::optional<Type> {
            if (has_failure) return std::nullopt;
            if (auto write = llvm::dyn_cast<TF::TensorArrayWriteV3Op>(user)) {
              return write.getValue().getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbEnumerationUtil.java

    
        /**
         * 
         */
        private SmbEnumerationUtil () {}
    
    
        private static DcerpcHandle getHandle ( CIFSContext ctx, SmbResourceLocator loc, Address address, String ep )
                throws MalformedURLException, DcerpcException {
            return DcerpcHandle.getHandle(String.format("ncacn_np:%s[endpoint=%s,address=%s]", loc.getServer(), ep, address.getHostAddress()), ctx);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbPipeOutputStream.java

        protected synchronized SmbFileHandleImpl ensureOpen () throws CIFSException {
            return this.handle.ensureOpen();
        }
    
    
        /**
         * @return the handle
         */
        protected SmbPipeHandleImpl getHandle () {
            return this.handle;
        }
    
    
        @Override
        public void close () {
            // ignore, the shared file descriptor is closed by the pipe handle
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top