Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addTarget (0.09 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/DefaultXcodeProject.java

                        result.addAll(xcodeTarget.getTaskDependencies());
                    }
                    return result;
                }
            };
        }
    
        public void addTarget(XcodeTarget target) {
            targets.add(target);
        }
    
        public File getLocationDir() {
            return locationDir;
        }
    
        public void setLocationDir(File locationDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                            target.getSwiftSourceCompatibility().set(swiftBinary.getTargetPlatform().getSourceCompatibility());
                        }
                    });
                    xcodeProject.addTarget(target);
                }
            });
        }
    
        private FileCollection filterArtifactsFromImplicitBuilds(Configuration configuration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	color.Output = io.Discard
    	// Disable Error logging in testing.
    	logger.DisableErrorLog = true
    
    	// Uncomment the following line to see trace logs during unit tests.
    	// logger.AddTarget(console.New())
    
    	// Set system resources to maximum.
    	setMaxResources(serverCtxt{})
    
    	// Initialize globalConsoleSys system
    	globalConsoleSys = NewConsoleLogger(context.Background(), io.Discard)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/loader.cc

      }
      for (const string& output_tensor_name : output_tensor_names) {
        callable_options.add_fetch(output_tensor_name);
      }
      for (const string& target_node_name : target_node_names) {
        callable_options.add_target(target_node_name);
      }
    
      Session::CallableHandle callable_handle;
      TF_RETURN_IF_ERROR(session->MakeCallable(callable_options, &callable_handle));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top