Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 605 for diag (0.1 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    		case 21:
    			if (v<<11)>>11 != v {
    				c.ctxt.Diag("21 bit-width, short branch too far\n%v", p)
    			}
    			o1 = OP_16IR_5I(c.opirr(as), uint32(v), uint32(rj))
    		case 16:
    			if (v<<16)>>16 != v {
    				c.ctxt.Diag("16 bit-width, short branch too far\n%v", p)
    			}
    			o1 = OP_16IRR(c.opirr(as), uint32(v), uint32(rj), uint32(rd))
    		default:
    			c.ctxt.Diag("unexpected branch encoding\n%v", p)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    	if oprange[AOR&obj.AMask] == nil {
    		c.ctxt.Diag("mips ops not initialized, call mips.buildop first")
    	}
    
    	pc := int64(0)
    	p.Pc = pc
    
    	var m int
    	var o *Optab
    	for p = p.Link; p != nil; p = p.Link {
    		p.Pc = pc
    		o = c.oplook(p)
    		m = int(o.size)
    		if m == 0 {
    			if p.As != obj.ANOP && p.As != obj.AFUNCDATA && p.As != obj.APCDATA {
    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

         *
         * See <a href="https://docs.oracle.com/javase/8/docs/technotes/guides/vm/gctuning/parallel.html#default_heap_size">Oracle</a>
         * and <a href="http://www.ibm.com/support/knowledgecenter/SSYKE2_8.0.0/com.ibm.java.lnx.80.doc/diag/appendixes/defaults.html">IBM</a>
         * corresponding documentation.
         *
         * @param osTotalMemory OS total memory in bytes
         * @return Default maximum heap size for the current JVM
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/objz.go

    	if textstksiz == -8 {
    		// Compatibility hack.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    	}
    	if textstksiz%8 != 0 {
    		c.ctxt.Diag("frame size %d not a multiple of 8", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    			c.ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", textstksiz)
    		}
    	}
    
    	c.cursym.Func().Args = p.To.Val.(int32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. pkg/config/analysis/local/istiod_analyze.go

    // copied from processing/snapshotter/analyzingdistributor.go
    func filterMessages(messages diag.Messages, namespaces sets.Set[resource.Namespace], suppressions []AnalysisSuppression) diag.Messages {
    	nsNames := sets.New[string]()
    	for k := range namespaces {
    		nsNames.Insert(k.String())
    	}
    
    	var msgs diag.Messages
    FilterMessages:
    	for _, m := range messages {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/diag/messages.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"sort"
    )
    
    // Messages is a slice of Message items.
    type Messages []Message
    
    // Add a new message to the messages
    func (ms *Messages) Add(m ...Message) {
    	*ms = append(*ms, m...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    		if err != nil {
    			return err
    		}
    		return fmt.Errorf("creating default tag would conflict:\n%v", o)
    	}
    	return nil
    }
    
    func filterOutBasedOnResources(ms diag.Messages, resources object.K8sObjects) diag.Messages {
    	outputMessages := diag.Messages{}
    	for _, m := range ms {
    		for _, rs := range resources {
    			if rs.Name == m.Resource.Metadata.FullName.Name.String() {
    				outputMessages = append(outputMessages, m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    	f, err := os.Open(file.Name)
    	if err != nil {
    		ctxt.Diag("%v", err)
    		return
    	}
    	defer f.Close()
    	if w.filebuf == nil {
    		w.filebuf = make([]byte, 1024)
    	}
    	buf := w.filebuf
    	written := int64(0)
    	for {
    		n, err := f.Read(buf)
    		w.Bytes(buf[:n])
    		written += int64(n)
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			ctxt.Diag("%v", err)
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. pkg/config/analysis/diag/message_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"encoding/json"
    	"fmt"
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/url"
    )
    
    func TestMessage_String(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/diag/messages_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/url"
    )
    
    func TestMessages_Sort(t *testing.T) {
    	g := NewWithT(t)
    
    	firstMsg := NewMessage(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top