Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,469 for Equate (0.18 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

                }
            }
            hello(NativeLibrarySpec)
        }
        binaries {
            all {
                if (buildType == buildTypes.debug) {
                    cppCompiler.define "FRENCH" // Equate 'debug' to 'french' for this test
                }
            }
        }
    }
            """
            and:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    		node.Labels = node.Metadata.Labels
    		return
    	}
    	labels := env.GetProxyWorkloadLabels(node)
    	if labels != nil {
    		node.Labels = make(map[string]string, len(labels)+len(node.Metadata.StaticLabels))
    		// we can't just equate proxy workload labels to node meta labels as it may be customized by user
    		// with `ISTIO_METAJSON_LABELS` env (pkg/bootstrap/config.go extractAttributesMetadata).
    		// so, we fill the `ISTIO_METAJSON_LABELS` as well.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/quote.go

    package markdown
    
    import (
    	"bytes"
    )
    
    type Quote struct {
    	Position
    	Blocks []Block
    }
    
    func (b *Quote) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("<blockquote>\n")
    	for _, c := range b.Blocks {
    		c.PrintHTML(buf)
    	}
    	buf.WriteString("</blockquote>\n")
    }
    
    func (b *Quote) printMarkdown(buf *bytes.Buffer, s mdState) {
    	s.prefix += "> "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/strconv/quote.go

    			continue
    		}
    		buf = appendEscapedRune(buf, r, quote, ASCIIonly, graphicOnly)
    	}
    	buf = append(buf, quote)
    	return buf
    }
    
    func appendQuotedRuneWith(buf []byte, r rune, quote byte, ASCIIonly, graphicOnly bool) []byte {
    	buf = append(buf, quote)
    	if !utf8.ValidRune(r) {
    		r = utf8.RuneError
    	}
    	buf = appendEscapedRune(buf, r, quote, ASCIIonly, graphicOnly)
    	buf = append(buf, quote)
    	return buf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. docs/assets/images/icon-square.png

    icon-square.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. docs/assets/images/logo-square.png

    logo-square.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. samples/guide/docs/images/logo-square.png

    logo-square.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jun 24 12:59:42 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  8. pkg/util/shellescape/quote.go

    // limitations under the License.
    
    package shellescape
    
    import (
    	"regexp"
    	"strings"
    )
    
    var unsafeValue = regexp.MustCompile(`[^\\w@%+=:,./-]`)
    
    func Quote(s string) string {
    	// ported from https://github.com/chrissimpkins/shellescape/blob/master/lib/shellescape/main.py
    	if len(s) == 0 {
    		return "''"
    	}
    
    	if unsafeValue.MatchString(s) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 20:37:19 UTC 2020
    - 968 bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/quote.txt

    Russ Cox <******@****.***> 1654262337 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:06:16 UTC 2022
    - 656 bytes
    - Viewed (0)
  10. buildSrc/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        `kotlin-dsl`
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
      implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Oct 18 20:40:57 UTC 2023
    - 746 bytes
    - Viewed (0)
Back to top