Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,193 for addLine (0.31 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/kotlin/settings.gradle.kts

                            attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, targetJvmVersion)
                        }
                        withFiles {
                            removeAllFiles()
                            addFile("guava-$version-$jarName.jar", "../$version-$jarName/guava-$version-$jarName.jar")
                        }
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. releasenotes/notes/envoyfilter-patch-context.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 36284
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 01:19:51 UTC 2021
    - 222 bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

        @Language("java")
        private static final JAVA_PLUGIN_EXTENSION = """
            package com.example.restricted;
    
            import org.gradle.declarative.dsl.model.annotations.Adding;
            import org.gradle.declarative.dsl.model.annotations.Configuring;
            import org.gradle.declarative.dsl.model.annotations.Restricted;
            import org.gradle.api.Action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintHandler.java

        /**
         * Creates a dependency constraint without adding it to a configuration.
         *
         * @param dependencyConstraintNotation The dependency constraint notation.
         */
        DependencyConstraint create(Object dependencyConstraintNotation);
    
        /**
         * Creates a dependency constraint without adding it to a configuration, and configures the dependency constraint using
         * the given closure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. src/go/scanner/example_test.go

    	src := []byte("cos(x) + 1i*sin(x) // Euler")
    
    	// Initialize the scanner.
    	var s scanner.Scanner
    	fset := token.NewFileSet()                      // positions are relative to fset
    	file := fset.AddFile("", fset.Base(), len(src)) // register input "file"
    	s.Init(file, src, nil /* no error handler */, scanner.ScanComments)
    
    	// Repeated calls to Scan yield the token sequence found in the input.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15013.go

    // CL 21202 introduced a compiler crash in the handling of a varargs
    // function in the same recursive group as a function that calls it.
    // Nothing in the standard library caught the problem, so adding a test.
    
    package p
    
    func F1(p *int, a ...*int) (int, *int) {
    	if p == nil {
    		return F2(), a[0]
    	}
    	return 0, a[0]
    }
    
    func F2() int {
    	var i0, i1 int
    	a, _ := F1(&i0, &i1)
    	return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 559 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

                }
    
                function.annotations.any { it is Adding } -> {
                    check(inType != null)
    
                    check(function.returnType != typeOf<Unit>() || configureLambdas.getTypeConfiguredByLambda(function.parameters.last().type) == null) {
                        "an @Adding function with a Unit return type may not accept configuring lambdas"
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue15926.go

    // build
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15926: linker was adding .def to the end of symbols, causing
    // a name collision with a method actually named def.
    
    package main
    
    type S struct{}
    
    func (s S) def() {}
    
    var I = S.def
    
    func main() {
        I(S{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 03 16:56:29 UTC 2016
    - 389 bytes
    - Viewed (0)
  9. src/internal/godebugs/table.go

    }
    
    // All is the table of known settings, sorted by Name.
    //
    // Note: After adding entries to this table, run 'go generate runtime/metrics'
    // to update the runtime/metrics doc comment.
    // (Otherwise the runtime/metrics test will fail.)
    //
    // Note: After adding entries to this table, update the list in doc/godebug.md as well.
    // (Otherwise the test in this package will fail.)
    var All = []Info{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. plugin/pkg/admission/storage/storageobjectinuseprotection/admission.go

    	if !ok {
    		return nil
    	}
    	for _, f := range pv.Finalizers {
    		if f == volumeutil.PVProtectionFinalizer {
    			// Finalizer is already present, nothing to do
    			return nil
    		}
    	}
    	klog.V(4).Infof("adding PV protection finalizer to %s", pv.Name)
    	pv.Finalizers = append(pv.Finalizers, volumeutil.PVProtectionFinalizer)
    
    	return nil
    }
    
    func (c *storageProtectionPlugin) admitPVC(a admission.Attributes) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 02 21:13:50 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top