Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for xcodeproj (0.18 sec)

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

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.google.common.collect.Sets;
    
    import java.util.Set;
    
    /**
     * Generator for Global ID (GID) which are present on every xcode project object.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildStyle.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSDictionary;
    import com.google.common.base.Preconditions;
    import org.gradle.api.Named;
    
    public class PBXBuildStyle extends PBXProjectItem implements Named {
        private final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXProject.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSDictionary;
    import com.google.common.base.Function;
    import com.google.common.base.Preconditions;
    import com.google.common.collect.Ordering;
    
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildFile.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSDictionary;
    import com.google.common.base.Optional;
    import com.google.common.base.Preconditions;
    
    /**
     * File referenced by a build phase, unique to each build phase.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXObject.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import javax.annotation.Nullable;
    
    
    public abstract class PBXObject {
        @Nullable
        private String globalID;
    
        @Nullable
        public String getGlobalID() {
            return globalID;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXLegacyTarget.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Concrete target type representing targets built by xcode itself, rather than an external build
     * system.
     */
    public class PBXLegacyTarget extends PBXTarget {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXFileReference.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.google.common.base.Optional;
    import com.google.common.io.Files;
    
    /**
     * Reference to a concrete file.
     */
    public class PBXFileReference extends PBXReference {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleProjectIntegrationTest.groovy

            def workspace = rootXcodeWorkspace
            workspace.contentFile.assertHasProjects("${rootProjectName}.xcodeproj")
    
            def project = rootXcodeProject.projectFile
            project.mainGroup.assertHasChildren(['build.gradle'])
            project.assertNoTargets()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.google.common.base.Preconditions;
    
    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/XCConfigurationList.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.google.common.base.Optional;
    import com.google.common.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top