Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for opcode (0.12 sec)

  1. pkg/kubelet/server/server_test.go

    }
    
    // returns http response status code from the HTTP GET
    func assertHealthIsOk(t *testing.T, httpURL string) {
    	resp, err := http.Get(httpURL)
    	if err != nil {
    		t.Fatalf("Got error GETing: %v", err)
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    		t.Errorf("expected status code %d, got %d", http.StatusOK, resp.StatusCode)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def _emit_binary_op(self, op, lhs, lhs_ty, rhs, rhs_ty):
        assert lhs_ty, rhs_ty
        if isinstance(op, ast.Sub):
          code = 'arith.sub'
        elif isinstance(op, ast.Add):
          code = 'arith.add'
        elif isinstance(op, ast.Mult):
          code = 'arith.mul'
        elif isinstance(op, ast.Div):
          code = 'arith.div'
        else:
          raise NotImplementedError('BinOp operator not recognized' + op)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== New API introduced may clash with existing Gradle DSL code
    
    When a new property or method is added to an existing type in the Gradle DSL, it may clash with names already in use in user code.
    
    When a name clash occurs, one solution is to rename the element in user code.
    
    This is a non-exhaustive list of API additions in 8.1 that may cause name collisions with existing user code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			event.Object = object
    		} else {
    			klog.Errorf("couldn't create cachingObject from: %#v", event.Object)
    		}
    		// Don't wrap PrevObject for update event (for create events it is nil).
    		// We only encode those to deliver DELETE watch events, so if
    		// event.Object is not nil it can be used only for watchers for which
    		// selector was satisfied for its previous version and is no longer
    		// satisfied for the current version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    }
    
    func watchBody(events ...watch.Event) string {
    	buf := &bytes.Buffer{}
    	codec := corev1Codec
    	enc := restclientwatch.NewEncoder(streaming.NewEncoder(buf, codec), codec)
    	for _, e := range events {
    		enc.Encode(&e)
    	}
    	return buf.String()
    }
    
    func fakeClient() FakeClientFunc {
    	return func(version schema.GroupVersion) (RESTClient, error) {
    		return &fake.RESTClient{}, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    		clientConn.Close()
    	}
    
    	connState := <-connStateChan
    	peerCerts := connState.PeerCertificates
    	if len(peerCerts) == len(test.expectedPeerCerts) {
    		for i, peerCert := range peerCerts {
    			block, _ := pem.Decode([]byte(test.expectedPeerCerts[i]))
    			if !bytes.Equal(block.Bytes, peerCert.Raw) {
    				t.Fatalf("%s: mismatch on peer cert %d", test.name, i+1)
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // Copyright 2019 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.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // This is a port of the s390x asm implementation.
    // to ppc64le.
    
    // Some changes were needed due to differences in
    // the Go opcodes and/or available instructions
    // between s390x and ppc64le.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	}
    
    	// All blocks on s390x have their condition code mask (s390x.CCMask) as the Aux value.
    	// The condition code mask is a 4-bit mask where each bit corresponds to a condition
    	// code value. If the value of the condition code matches a bit set in the condition
    	// code mask then the first successor is executed. Otherwise the second successor is
    	// executed.
    	//
    	// | condition code value |  mask bit  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	}
    	c.SetAppInfo("minio-"+batchJobPrefix, r.APIVersion+" "+job.ID)
    
    	vcfg, err := c.GetBucketVersioning(ctx, remoteBkt)
    	if err != nil {
    		if miniogo.ToErrorResponse(err).Code == "NoSuchBucket" {
    			return batchReplicationJobError{
    				Code:           "NoSuchTargetBucket",
    				Description:    "The specified target bucket does not exist",
    				HTTPStatusCode: http.StatusNotFound,
    			}
    		}
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    	// Scan the comment for '\n' chars and adjust endline accordingly.
    	endline = p.file.Line(p.pos)
    	if p.lit[1] == '*' {
    		// don't use range here - no need to decode Unicode code points
    		for i := 0; i < len(p.lit); i++ {
    			if p.lit[i] == '\n' {
    				endline++
    			}
    		}
    	}
    
    	comment = &ast.Comment{p.pos, p.lit}
    	p.next0()
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top