Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 474 for Identical (0.35 sec)

  1. operator/cmd/mesh/profile-diff.go

    	if err != nil {
    		return false, fmt.Errorf("could not read %q: %v", profileB, err)
    	}
    
    	diff := util.YAMLDiff(a, b)
    	if diff == "" {
    		fmt.Fprintln(writer, "Profiles are identical")
    	} else {
    		fmt.Fprintf(writer, "The difference between profiles:\n%s", diff)
    		return true, nil
    	}
    
    	return false, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// complete the transformation.
    	ErrShortSrc = errors.New("transform: short source buffer")
    
    	// ErrEndOfSpan means that the input and output (the transformed input)
    	// are not identical.
    	ErrEndOfSpan = errors.New("transform: input and output are not identical")
    
    	// errInconsistentByteCount means that Transform returned success (nil
    	// error) but also returned nSrc inconsistent with the src argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    			lhs:   UnstructuredToVal([]interface{}{"a", "b"}, &setListSchema),
    			rhs:   UnstructuredToVal([]interface{}{"a", "b", "c"}, &setListSchema),
    			equal: false,
    		},
    		{
    			name:  "identical atomic lists are equal",
    			lhs:   UnstructuredToVal([]interface{}{"a", "b"}, &atomicListSchema),
    			rhs:   UnstructuredToVal([]interface{}{"a", "b"}, &atomicListSchema),
    			equal: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/math/big/floatexample_test.go

    func ExampleFloat_Copy() {
    	var x, z big.Float
    
    	x.SetFloat64(1.23)
    	r := z.Copy(&x)
    	fmt.Printf("a) r = %g, z = %g, x = %g, r == z = %v\n", r, &z, &x, r == &z)
    
    	// changing z changes r since they are identical
    	z.SetInt64(42)
    	fmt.Printf("b) r = %g, z = %g, r == z = %v\n", r, &z, r == &z)
    
    	x.SetPrec(1)
    	z.Copy(&x)
    	fmt.Printf("c) z = %g, x = %g, z == x = %v\n", &z, &x, &z == &x)
    
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeset.go

    		return f(nil)
    	}
    	for _, t := range s.terms {
    		assert(t.typ != nil)
    		// x == under(x) for ~x terms
    		u := t.typ
    		if !t.tilde {
    			u = under(u)
    		}
    		if debug {
    			assert(Identical(u, under(u)))
    		}
    		if !f(u) {
    			return false
    		}
    	}
    	return true
    }
    
    // topTypeSet may be used as type set for the empty interface.
    var topTypeSet = _TypeSet{terms: allTermlist}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/diag/messages_test.go

    		MockResource("B"),
    		"B",
    	)
    	secondMsg := NewMessage(
    		NewMessageType(Warning, "A1", "Template: %q"),
    		MockResource("B"),
    		"B",
    	)
    	// Oops, we have a duplicate (identical to firstMsg) - it should be removed.
    	thirdMsg := NewMessage(
    		NewMessageType(Error, "B1", "Template: %q"),
    		MockResource("B"),
    		"B",
    	)
    
    	msgs := Messages{thirdMsg, secondMsg, firstMsg}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Call.kt

       * retries all must complete within one timeout period.
       *
       * Configure the client's default timeout with [OkHttpClient.Builder.callTimeout].
       */
      fun timeout(): Timeout
    
      /**
       * Create a new, identical call to this one which can be enqueued or executed even if this call
       * has already been.
       */
      public override fun clone(): Call
    
      fun interface Factory {
        fun newCall(request: Request): Call
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/graphql.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    				// x and y should be invalid now, but be conservative
    				// and check below
    			}
    		}
    		if x.mode == invalid || y.mode == invalid {
    			return
    		}
    
    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    		// the argument types must be of floating-point type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/os/types.go

    // SameFile reports whether fi1 and fi2 describe the same file.
    // For example, on Unix this means that the device and inode fields
    // of the two underlying structures are identical; on other systems
    // the decision may be based on the path names.
    // SameFile only applies to results returned by this package's [Stat].
    // It returns false in other cases.
    func SameFile(fi1, fi2 FileInfo) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top