Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 587 for admitted (0.12 sec)

  1. src/log/slog/text_handler.go

    // Handle formats its argument [Record] as a single line of space-separated
    // key=value items.
    //
    // If the Record's time is zero, the time is omitted.
    // Otherwise, the key is "time"
    // and the value is output in RFC3339 format with millisecond precision.
    //
    // If the Record's level is zero, the level is omitted.
    // Otherwise, the key is "level"
    // and the value of [Level.String] is output.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/components/post_calibration_component.mlir

    // Tests that the dot_general accepts i8 tensors and outputs an i32 tensor.
    // Note: Argument quantization sequence omitted.
    // CHECK: stablehlo.dot_general %{{.+}}, %{{.+}}, contracting_dims = [1] x [0] : (tensor<1x1024xi8>, tensor<1024x3xi8>) -> tensor<1x3xi32>
    
    // Note: Result dequantization sequence omitted.
    // CHECK: return %{{.+}} : tensor<1x3xf32>
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        void startProcessChildren(Artifact artifact);
    
        void endProcessChildren(Artifact artifact);
    
        void includeArtifact(Artifact artifact);
    
        void omitForNearer(Artifact omitted, Artifact kept);
    
        void updateScope(Artifact artifact, String scope);
    
        @Deprecated
        void manageArtifact(Artifact artifact, Artifact replacement);
    
        // TODO Use the following two instead of manageArtifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/runtime/funcdata.h

    // GO_ARGS indicates that the Go prototype for this assembly function
    // defines the pointer map for the function's arguments.
    // GO_ARGS should be the first instruction in a function that uses it.
    // It can be omitted if there are no arguments at all.
    // GO_ARGS is inserted implicitly by the assembler for any function
    // whose package-qualified symbol name belongs to the current package;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/trace_cgo_test.go

    package runtime_test
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"internal/trace"
    	"io"
    	"os"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    // TestTraceUnwindCGO verifies that trace events emitted in cgo callbacks
    // produce the same stack traces and don't cause any crashes regardless of
    // tracefpunwindoff being set to 0 or 1.
    func TestTraceUnwindCGO(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

         *
         * <p>Derived artifacts are not mandatory, i.e. when the supplied file does not exist when this
         * publication is about to be published, they will simply be omitted from the file transfer.
         *
         * <p>Currently, the only known use case for derived artifacts is adding signature files
         * created by the signing plugin.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                Circular dependency between the following binaries:
                lib:sharedLibrary
                \\--- util:sharedLibrary
                     \\--- lib:sharedLibrary (*)
    
                (*) - details omitted (listed previously)
                '''.stripIndent().trim()
        }
    
        def "indirect circular dependencies are handled gracefully"() {
            buildScript simpleCppBuild()
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// Omitted for non-resource requests.  Only logged at Request Level and higher.
    	// +optional
    	RequestObject *runtime.Unknown
    	// API object returned in the response, in JSON. The ResponseObject is recorded after conversion
    	// to the external type, and serialized as JSON. Omitted for non-resource requests.  Only logged
    	// at Response Level.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.go

    				},
    				Spec: capi.ClusterTrustBundleSpec{
    					TrustBundle: badTooBigBundle,
    				},
    			},
    			wantErrors: field.ErrorList{
    				field.TooLong(field.NewPath("spec", "trustBundle"), fmt.Sprintf("<value omitted, len %d>", len(badTooBigBundle)), core.MaxSecretSize),
    			},
    		},
    		{
    			description: "invalid, no signer name, invalid name",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. plugin/pkg/admission/imagepolicy/admission.go

    			Annotations: a.filterAnnotations(pod.Annotations),
    			Namespace:   attributes.GetNamespace(),
    		},
    	}
    	if err := a.admitPod(ctx, pod, attributes, &imageReview); err != nil {
    		return admission.NewForbidden(attributes, err)
    	}
    	return nil
    }
    
    func (a *Plugin) admitPod(ctx context.Context, pod *api.Pod, attributes admission.Attributes, review *v1alpha1.ImageReview) error {
    	cacheKey, err := json.Marshal(review.Spec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top