Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for attr_ (0.04 sec)

  1. tensorflow/compiler/aot/aot_only_var_handle_op.cc

    REGISTER_OP(tfcompile::kXlaAotOnlyVarHandleOp)
        .Doc(R"doc(
    Internal VarHandleOp registration used for XLA AOT compilation.
    )doc")
        .Attr("container: string = ''")
        .Attr("shared_name: string = ''")
        .Attr("debug_name: string = ''")
        .Attr("dtype: type")
        .Attr("shape: shape")
        .Output("resource: resource")
        .SetIsStateful()
        .SetShapeFn([](shape_inference::InferenceContext* c) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/os/exec_plan9.go

    	Kill      Signal = syscall.Note("kill")
    )
    
    func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
    	sysattr := &syscall.ProcAttr{
    		Dir: attr.Dir,
    		Env: attr.Env,
    		Sys: attr.Sys,
    	}
    
    	sysattr.Files = make([]uintptr, 0, len(attr.Files))
    	for _, f := range attr.Files {
    		sysattr.Files = append(sysattr.Files, f.Fd())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/kubelet/server/auth_test.go

    			getter := NewNodeAuthorizerAttributesGetter(authzTestNodeName)
    
    			req, err := http.NewRequest(test.Method, "https://localhost:1234"+test.Path, nil)
    			require.NoError(t, err)
    			attrs := getter.GetRequestAttributes(AuthzTestUser(), req)
    
    			test.AssertAttributes(t, attrs)
    		})
    	}
    }
    
    const (
    	authzTestNodeName = "test"
    	authzTestUserName = "phibby"
    )
    
    type AuthzTestCase struct {
    	Method, Path string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/debugging/dump_tensor_op.cc

    // with `func_name` and `node_name` to identify the op.
    REGISTER_OP("DumpTensor")
        .Input("tensor_data: T")
        .Attr("log_dir_path: string")
        .Attr("file_name: string")
        .Attr("T: type")
        .Attr("enabled: bool")
        .Attr("func_name: string")
        .Attr("node_name: string")
        .SetIsStateful();
    
    class DumpTensorOp : public OpKernel {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 03:12:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

        output_tys.push_back(mlir_ty);
      }
      llvm::SmallVector<mlir::NamedAttribute, 4> attrs;
      for (const auto& attr : node_def.attr()) {
        TF_ASSIGN_OR_RETURN(auto mlir_attr,
                            ConvertAttributeValue(attr.second, &builder));
        attrs.push_back({mlir::StringAttr::get(context, attr.first), mlir_attr});
      }
    
      mlir::Location loc = mlir::UnknownLoc::get(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '1');
        }).mouseleave(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '0');
        });
    
        $('.section-sign').click(function () {
            var $temp = $("<input>");
            $("body").append($temp);
            $temp.val(window.location.href.split('#')[0] + $(this).attr('href')).select();
            document.execCommand("copy");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/DependencyConstraintSpec.groovy

            group = g
            module = m
            version = v
            this.preferredVersion = preferredVersion
            this.strictVersion = strictVersion
            rejects = r?:Collections.<String>emptyList()
            reason = desc
            attributes = attrs
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.cc

      return {"tf.entry_function",
              tf_saved_model::kTfSavedModelInitializerTypeAttr};
    }
    
    bool IsEntryFunction(func::FuncOp func) {
      for (const auto &attr : GetEntryFunctionAttributeNames()) {
        if (func->hasAttr(attr)) {
          return true;
        }
      }
      return false;
    }
    
    llvm::SmallVector<func::FuncOp> GetEntryFunctions(ModuleOp module) {
      llvm::SmallVector<func::FuncOp> entry_funcs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/lifecycle/handlers.go

    type appArmorAdmitHandler struct {
    	apparmor.Validator
    }
    
    func (a *appArmorAdmitHandler) Admit(attrs *PodAdmitAttributes) PodAdmitResult {
    	// If the pod is already running or terminated, no need to recheck AppArmor.
    	if attrs.Pod.Status.Phase != v1.PodPending {
    		return PodAdmitResult{Admit: true}
    	}
    
    	err := a.Validate(attrs.Pod)
    	if err == nil {
    		return PodAdmitResult{Admit: true}
    	}
    	return PodAdmitResult{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

                        writer.println("def attrs = [:]");
                        for (Map.Entry<String, String> entry : manifestAttributes.entrySet()) {
                            writer.println(String.format("attrs.put(\"%s\", \"%s\")", entry.getKey(), entry.getValue()));
                        }
                        writer.println("manifest.attributes(attrs)");
                    }
                    writer.println("}");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top