Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for unusual (2.1 sec)

  1. src/reflect/deepequal.go

    //
    // In general DeepEqual is a recursive relaxation of Go's == operator.
    // However, this idea is impossible to implement without some inconsistency.
    // Specifically, it is possible for a value to be unequal to itself,
    // either because it is of func type (uncomparable in general)
    // or because it is a floating-point NaN value (not equal to itself in floating-point comparison),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/tool/tool.go

    				// that we're impersonating dist list if knowing that becomes important?
    				telemetry.Inc("go/subcommand:tool-dist")
    				return
    			}
    		}
    
    		telemetry.Inc("go/subcommand:tool-unknown")
    		// Emit the usual error for the missing tool.
    		_ = base.Tool(toolName)
    	} else {
    		// Increment a counter for the tool subcommand with the tool name.
    		telemetry.Inc("go/subcommand:tool-" + toolName)
    	}
    
    	if toolN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/v1/PrecompiledScriptTemplates.kt

    }
    
    
    /**
     * Script template definition for precompiled Kotlin scripts targeting [Project] instances.
     *
     * A precompiled script is a script compiled as part of a regular Kotlin source-set and distributed
     * in the usual way, java class files packaged in some library, meant to be consumed as a binary
     * Gradle plugin.
     *
     * The Gradle plugin id by which the precompiled script can be referenced is derived from its name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/internal/types/testdata/examples/methods.go

    // Type parameters may be left blank if they are not needed:
    func (t T2[A, _, C]) m4() (A, C) { return t.a, t.c }
    func (t T2[_, _, X]) m5() X { return t.c }
    func (t T2[_, _, _]) m6() {}
    
    // As usual, blank names may be used for any object which we don't care about
    // using later. For instance, we may write an unnamed method with a receiver
    // that cannot be accessed:
    func (_ T2[_, _, _]) _() int { return 42 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. internal/crypto/sse-s3.go

    		Name:           keyID,
    		Ciphertext:     kmsKey,
    		AssociatedData: kms.Context{bucket: path.Join(bucket, object)},
    	})
    	if err != nil {
    		return key, err
    	}
    	err = key.Unseal(unsealKey, sealedKey, s3.String(), bucket, object)
    	return key, err
    }
    
    // UnsealObjectsKeys extracts and decrypts all sealed object keys
    // from the metadata using the KMS and returns the decrypted object
    // keys.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/functions.go

    		if x1 > x0 {
    			return x1
    		}
    	}
    	return x0
    }
    
    // When inferring channel types, the channel direction is ignored
    // for the purpose of type inference. Once the type has been in-
    // fered, the usual parameter passing rules are applied.
    // Thus even if a type can be inferred successfully, the function
    // call may not be valid.
    
    func fboth[T any](chan T) {}
    func frecv[T any](<-chan T) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Extract the islands containing a TPU cluster computation into an outlined
    // function in a nested module. This will allow to run the usual bridge on this
    // nested module which exhibit a more friendly "V2-like" structure.
    // This is only intended for V1 compatibility mode where the bridge runs without
    // feed/fetches on session create/extend.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arm.go

    		return true
    	}
    	return false
    }
    
    // ARMMRCOffset implements the peculiar encoding of the MRC and MCR instructions.
    // The difference between MRC and MCR is represented by a bit high in the word, not
    // in the usual way by the opcode itself. Asm must use AMRC for both instructions, so
    // we return the opcode for MRC so that asm doesn't need to import obj/arm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/covdata/subtractintersect.go

    	}
    
    	// If we're processing counter data from the initial (first) input
    	// directory, then just install it into the counter data map
    	// as usual.
    	if s.inidx == 0 {
    		s.mm.visitFuncCounterData(data)
    		return
    	}
    
    	// If we're looking at counter data from a dir other than
    	// the first, then perform the intersect/subtract.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. internal/crypto/sse-kms.go

    	}
    	unsealKey, err := k.Decrypt(context.TODO(), &kms.DecryptRequest{
    		Name:           keyID,
    		Ciphertext:     kmsKey,
    		AssociatedData: ctx,
    	})
    	if err != nil {
    		return key, err
    	}
    	err = key.Unseal(unsealKey, sealedKey, s3.String(), bucket, object)
    	return key, err
    }
    
    // CreateMetadata encodes the sealed object key into the metadata and returns
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top