Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,938 for reckon (0.3 sec)

  1. pilot/pkg/config/kube/gateway/conditions.go

    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    					reason = ref.DeniedReason.Reason
    				}
    				if wantReason != reason {
    					// Skip this one, it is for a less relevant reason
    					continue
    				}
    				exist, f := report[k]
    				if f {
    					if ref.DeniedReason != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/server/monitoring.go

    package server
    
    import (
    	"strconv"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/monitoring"
    )
    
    const (
    	group       = "group"
    	version     = "version"
    	resourceTag = "resource"
    	reason      = "reason"
    	status      = "status"
    )
    
    var (
    	// GroupTag holds the resource group for the context.
    	GroupTag = monitoring.CreateLabel(group)
    
    	// VersionTag holds the resource version for the context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/aws.go

    		md[AWSAvailabilityZone] = a.availabilityZone
    	}
    	if len(a.region) > 0 {
    		md[AWSRegion] = a.region
    	}
    	if len(a.instanceID) > 0 {
    		md[AWSInstanceID] = a.instanceID
    	}
    	return md
    }
    
    func (a *awsEnv) Locality() *core.Locality {
    	return &core.Locality{
    		Zone:   a.availabilityZone,
    		Region: a.region,
    	}
    }
    
    func (a *awsEnv) Labels() map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 03:52:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/hoist_loop_invariant.cc

      return moveLoopInvariantCode(
          loopLike.getLoopRegions(),
          [&](Value value, Region *) {
            return loopLike.isDefinedOutsideOfLoop(value);
          },
          [&](Operation *op, Region *region) {
            return ShouldMoveOutOfRegion(op, region, read_only_vars);
          },
          [&](Operation *op, Region *) { loopLike.moveOutOfLoop(op); });
    }
    
    void HoistLoopInvariantPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          SetPotentiallyWritten(operand->get());
        }
      });
    }
    
    void ResourceAnalyzer::PropagatePotentiallyWrittenUpFromCallee(
        Region& region, Operation::operand_range propagate_to) {
      (void)AnalyzeRegion(region);
      for (auto t : llvm::zip(region.getArguments(), propagate_to)) {
        if (!IsResource(std::get<0>(t))) {
          continue;
        }
        if (IsPotentiallyWritten(std::get<0>(t))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/EnvironmentModificationResult.java

        UNSUPPORTED_ENVIRONMENT("There is no native integration with this operating environment.");
    
        private final String reason;
    
        EnvironmentModificationResult(String reason) {
            this.reason = reason;
        }
    
        @Override
        public String toString() {
            return reason;
        }
    
        public boolean isSuccess() {
            return this == SUCCESS;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyMetadata.java

            this(configuration, dependencyDescriptor, reason, endorsing, dependencyDescriptor.getConfigurationArtifacts(configuration));
        }
    
        private IvyDependencyMetadata(ConfigurationMetadata configuration, IvyDependencyDescriptor dependencyDescriptor, @Nullable String reason, boolean endorsing, List<IvyArtifactName> artifacts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

                this.group = group;
                this.module = module;
                this.versionConstraint = versionConstraint;
                this.reason = reason;
                this.attributes = attributes;
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    individual replica and is mapped to a single region argument. Inside one group
    the operands are matching in order the `devices` attribute. Each replicated
    input must have compatible shapes and types.
    packed_inputs: each input corresponds to an input broadcasted across all
    replicas and is mapped to a single region argument.
    
    Operands not replicated can be implicitly captured by ops in the region. Results
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/os/dirent_solaris.go

    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	reclen, ok := direntReclen(buf)
    	if !ok {
    		return 0, false
    	}
    	return reclen - uint64(unsafe.Offsetof(syscall.Dirent{}.Name)), true
    }
    
    func direntType(buf []byte) FileMode {
    	return ^FileMode(0) // unknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 759 bytes
    - Viewed (0)
Back to top