Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 213 for asms (0.04 sec)

  1. README.md

    # GORM
    
    The fantastic ORM library for Golang, aims to be developer friendly.
    
    [![go report card](https://goreportcard.com/badge/github.com/go-gorm/gorm "go report card")](https://goreportcard.com/report/github.com/go-gorm/gorm)
    [![test status](https://github.com/go-gorm/gorm/workflows/tests/badge.svg?branch=master "test status")](https://github.com/go-gorm/gorm/actions)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/analyzer.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // The auth package provides support for checking the authentication and authorization policy applied
    // in the mesh. It aims to increase the debuggability and observability of auth policies.
    // Note: this is still under active development and is not ready for real use.
    package authz
    
    import (
    	"fmt"
    	"io"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SortingAnnotationVisitor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.util.LinkedList;
    import java.util.List;
    
    public class SortingAnnotationVisitor extends AnnotationVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/well_known_labels.go

    	// LabelServiceName is used to indicate the name of a Kubernetes service.
    	LabelServiceName = "kubernetes.io/service-name"
    	// LabelManagedBy is used to indicate the controller or entity that manages
    	// an EndpointSlice. This label aims to enable different EndpointSlice
    	// objects to be managed by different controllers or entities within the
    	// same cluster. It is highly recommended to configure this label for all
    	// EndpointSlices.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:32 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/LambdaSerializationTransformerTest.groovy

    import org.gradle.internal.classpath.ClassWithObjectCapturingLambda
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassVisitor
    import org.objectweb.asm.ClassWriter
    import org.objectweb.asm.MethodVisitor
    import org.objectweb.asm.Type
    import org.objectweb.asm.commons.CodeSizeEvaluator
    import spock.lang.Specification
    
    class LambdaSerializationTransformerTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 11:19:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/kotlin/build.gradle.kts

        fun execute(context: ComponentMetadataContext) = context.details.run {
            if (id.group == "asm" && id.name == "asm") {
                allVariants {
                    withCapabilities {
                        // Declare that ASM provides the org.ow2.asm:asm capability, but with an older version
                        addCapability("org.ow2.asm", "asm", id.version)
                    }
                }
            }
        }
    }
    // end::fix_asm[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/well_known_labels.go

    	// IP addresses filtered by family.
    	LabelIPAddressFamily = "ipaddress.kubernetes.io/ip-family"
    	// LabelManagedBy is used to indicate the controller or entity that manages
    	// an IPAddress. This label aims to enable different IPAddress
    	// objects to be managed by different controllers or entities within the
    	// same cluster. It is highly recommended to configure this label for all
    	// IPAddress objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:56:44 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/naming/from_stack.go

    		_, file, line, ok := goruntime.Caller(i)
    		if !ok {
    			file, line, ok = extractStackCreator()
    			if !ok {
    				break
    			}
    			i += maxStack
    		}
    		if hasPackage(file, append(ignoredPackages, "/runtime/asm_")) {
    			continue
    		}
    
    		file = trimPackagePrefix(file)
    		name = fmt.Sprintf("%s:%d", file, line)
    		break
    	}
    	return name
    }
    
    // hasPackage returns true if the file is in one of the ignored packages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 01:31:42 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.userinput;
    
    import java.util.function.Function;
    
    /**
     * Asks the user to select an option from a list of options. Allows the choice to be configured in various ways.
     *
     * @param <T> The type of the options of this choice.
     */
    public interface Choice<T> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

    import org.gradle.test.precondition.TestPrecondition
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.junit.Assume
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassVisitor
    import org.objectweb.asm.Label
    import org.objectweb.asm.MethodVisitor
    import org.objectweb.asm.Opcodes
    
    import java.lang.reflect.Modifier
    
    class ApiClassExtractorTest extends ApiClassExtractorTestSupport {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top