Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for nack (0.08 sec)

  1. src/runtime/symtabinl.go

    //
    // This unwinder uses non-strict handling of PC because it's assumed this is
    // only ever used for symbolic debugging. If things go really wrong, it'll just
    // fall back to the outermost frame.
    //
    // newInlineUnwinder should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/apis.go

    	// with specific priorities.
    	// TODO: describe the priority all the way down in the RESTStorageProviders and plumb it back through the various discovery
    	// handlers that we have.
    	return []RESTStorageProvider{
    		c.NewCoreGenericConfig(),
    		apiserverinternalrest.StorageProvider{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/test/mock/caserver.go

    	}
    	respCertChain := []string{string(cert)}
    	respCertChain = append(respCertChain, string(s.certPem))
    	response := &pb.IstioCertificateResponse{
    		CertChain: respCertChain,
    	}
    	caServerLog.Info("send back CSR success response")
    	return response, nil
    }
    
    func (s *CAServer) sign(csrPEM []byte, subjectIDs []string, _ time.Duration, forCA bool) ([]byte, error) {
    	csr, err := util.ParsePemEncodedCSR(csrPEM)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/runtime/lock_futex.go

    	// wait is either MUTEX_LOCKED or MUTEX_SLEEPING
    	// depending on whether there is a thread sleeping
    	// on this mutex. If we ever change l->key from
    	// MUTEX_SLEEPING to some other value, we must be
    	// careful to change it back to MUTEX_SLEEPING before
    	// returning, to ensure that the sleeping thread gets
    	// its wakeup call.
    	wait := v
    
    	timer := &lockTimer{lock: l}
    	timer.begin()
    	// On uniprocessors, no point spinning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

            auto shape = output_tensor->shape;
            output_tensor->quantization->scale.clear();
            output_tensor->quantization->zero_point.clear();
            for (int i = 0; i < shape.back(); ++i) {
              output_tensor->quantization->min.push_back(-1.0 * i);
              output_tensor->quantization->max.push_back(1.0 * i);
            }
            output_tensor->quantization->quantized_dimension = shape.size() - 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

      if (init_func_op) {
        return init_func_op;
      } else if (!session_init_op.getInitializers().empty()) {
        // When the init function with type "restore_op" is not found, fall back to
        // taking the init function corresponding to the first symbol in the
        // initializers list to be backwards-compatible, before
        // tf_saved_model.initializer_type attribute was introduced.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/runtime/export_debug_test.go

    	case 0:
    		// Frame is ready. Copy the arguments to the frame and to registers.
    		// Call the debug function.
    		h.debugCallRun(ctxt)
    	case 1:
    		// Function returned. Copy frame and result registers back out.
    		h.debugCallReturn(ctxt)
    	case 2:
    		// Function panicked. Copy panic out.
    		h.debugCallPanicOut(ctxt)
    	case 8:
    		// Call isn't safe. Get the reason.
    		h.debugCallUnsafe(ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	// If we call Convert_v1beta3_ClusterConfiguration_To_kubeadm_ClusterConfiguration() these fields will receive
    	// a default value, thus here we need to reset them back to empty.
    	out.EncryptionAlgorithm = ""
    	out.CertificateValidityPeriod = nil
    	out.CACertificateValidityPeriod = nil
    	// Set default timeouts.
    	kubeadm.SetDefaultTimeouts(&out.Timeouts)
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

            return System.getProperty("org.gradle.internal.worker.tmpdir");
        }
    
        /**
         * Creates an instance for a Factory implementation with a system property set to a given value.  Sets the system property back to the original value (or
         * clears it if it was never set) after the operation.
         *
         * @param propertyName The name of the property to set
         * @param value The value to temporarily set the property to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

                new EstablishBuildEnvironment(processEnvironment),
                new LogToClient(loggingManager, daemonDiagnostics), // from this point down, logging is sent back to the client
                new LogAndCheckHealth(healthStats, healthCheck, runningStats),
                new ForwardClientInput(inputReader, eventDispatch),
                new RequestStopIfSingleUsedDaemon(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top