Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Eintrag (0.18 sec)

  1. docs/de/docs/deployment/https.md

    In dem oder den DNS-Server(n) würden Sie einen Eintrag (einen „`A record`“) konfigurieren, um mit **Ihrer Domain** auf die öffentliche **IP-Adresse Ihres Servers** zu verweisen.
    
    Sie würden dies wahrscheinlich nur einmal tun, beim ersten Mal, wenn Sie alles einrichten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. docs/de/docs/alternatives.md

    Doch dann verlagerte sich der Schwerpunkt des Projekts.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/buildscript/groovy/build.gradle

    // tag::buildscript_block[]
    buildscript {
        repositories {
            gradlePluginPortal()
        }
        dependencies {
            classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
        }
    }
    
    apply plugin: 'com.jfrog.bintray'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 259 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/buildscript/kotlin/build.gradle.kts

    // tag::buildscript_block[]
    buildscript {
        repositories {
            gradlePluginPortal()
        }
        dependencies {
            classpath("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5")
        }
    }
    
    apply(plugin = "com.jfrog.bintray")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 262 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-closure-of/kotlin/build.gradle.kts

    import com.jfrog.bintray.gradle.BintrayExtension.PackageConfig
    
    plugins {
        id("com.jfrog.bintray") version "1.8.5"
    }
    
    // tag::closureOf[]
    bintray {
        pkg(closureOf<PackageConfig> {
            // Config for the package here
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/dsl/groovy/build.gradle

    // tag::use-plugin[]
    // tag::use-community-plugin[]
    plugins {
    // end::use-community-plugin[]
        id 'java'
    // end::use-plugin[]
    // tag::use-community-plugin[]
        id 'com.jfrog.bintray' version '1.8.5'
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 277 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    The Gradle Bintray Plugin - `com.jfrog.bintray` :: Allows you to publish artifacts to Bintray by configuring the plugin using the `bintray{}` block.
    
    == Plugin distribution
    
    Plugins are distributed in three ways:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. .idea/dictionaries/4u7.xml

    <component name="ProjectDictionaryState">
      <dictionary name="4u7">
        <words>
          <w>aarch</w>
          <w>bintray</w>
          <w>cacheability</w>
          <w>cacheable</w>
          <w>cidr</w>
          <w>fastutil</w>
          <w>foldable</w>
          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/dsl/kotlin/build.gradle.kts

    // tag::use-plugin[]
    // tag::use-community-plugin[]
    plugins {
        // end::use-community-plugin[]
        java
    // end::use-plugin[]
    // tag::use-community-plugin[]
        id("com.jfrog.bintray") version "1.8.5"
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 277 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/pgo/devirtualize/mult.pkg/mult.go

    	}
    	return a * b
    }
    
    type NegMult struct{}
    
    func (NegMult) Multiply(a, b int) int {
    	for i := 0; i < 1000; i++ {
    		sink++
    	}
    	return -1 * a * b
    }
    
    // N.B. Different types than AddFunc to test intra-line disambiguation.
    type MultFunc func(int64, int64) int64
    
    func MultFn(a, b int64) int64 {
    	for i := 0; i < 1000; i++ {
    		sink++
    	}
    	return a * b
    }
    
    func NegMultFn(a, b int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top