Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 318 for SAME (0.09 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      // The SegmentSum operation sums segments of the Tensor that have the same
      // index in the segment_ids parameter.
      // i.e z = [2, 3, 4, 5], segment_ids [0, 0, 0, 1]
      // will produce [2 + 3 + 4, 5] = [9, 5]
      // The gradient that will flow back to the gather operation will look like
      // [x1, x2], it will have the same shape as the output of the SegmentSum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	}
    
    	for svcPortName, eps := range newEndpointsMap {
    		logFormattedEndpoints("endpointsMapChange newEndpointsMap", logLevel, svcPortName, eps)
    		// redundantCleanup true means cleanup is called second time on the same svcPort
    		redundantCleanup := svcPortMap[svcPortName]
    		proxier.onEndpointsMapChange(&svcPortName, redundantCleanup)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// "{ValidatingAdmissionPolicy name}/{key}".
    	//
    	// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
    	// and the same audit annotation key, the annotation key will be identical.
    	// In this case, the first annotation written with the key will be included
    	// in the audit event and all subsequent annotations with the same key
    	// will be discarded.
    	//
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. cmd/object-api-multipart_test.go

    		// Cases 5-7.
    		// Create parts with 3 uploadID's for the same object.
    		// Testing for listing of all the uploadID's for given object.
    		// Insertion with 3 different uploadID's are done for same bucket and object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use the `testResults` property instead.
    
    ==== JacocoMerge Task Removed
    
    The deprecated `JacocoMerge` task type has been removed.
    The same functionality is also available on the `JacocoReport` task.
    
    ==== JavaExec API Cleanup
    
    The deprecated `main` property of the `JavaExec` task type has been removed.
    Use the `mainClass` property instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    	runOnHost bool // When cross-compiling, run this test on the host instead of guest
    
    	// variant, if non-empty, is a name used to distinguish different
    	// configurations of the same test package(s). If set and omitVariant is false,
    	// the Package field in test2json output is rewritten to pkg:variant.
    	variant string
    	// omitVariant indicates that variant is used solely for the dist test name and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    		})
    		if err != nil {
    			return nil, err
    		}
    
    		if deploymentID == "" {
    			// all pools should have same deployment ID
    			deploymentID = formats[i].ID
    		}
    
    		// Validate if users brought different DeploymentID pools.
    		if deploymentID != formats[i].ID {
    			return nil, fmt.Errorf("all pools must have same deployment ID - expected %s, got %s for pool(%s)", deploymentID, formats[i].ID, humanize.Ordinal(i+1))
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    // the merge happens in a stack location (a "stack" phi).
    //
    // A register phi must have the phi and all of its inputs allocated to the
    // same register. Register phis are spilled similarly to regular ops.
    //
    // A stack phi must have the phi and all of its inputs allocated to the same
    // stack location. Stack phis start out life already spilled - each phi
    // input must be a store (using StoreReg) at the end of the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// "{ValidatingAdmissionPolicy name}/{key}".
    	//
    	// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
    	// and the same audit annotation key, the annotation key will be identical.
    	// In this case, the first annotation written with the key will be included
    	// in the audit event and all subsequent annotations with the same key
    	// will be discarded.
    	//
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    	// Since a P is bound to an M, and we're stopping on the same M we started, it must
    	// always be possible to advance the current M's P from a ProcStop. This is also why
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top